Add current project to Git repo.
This commit is contained in:
33
lib/main.dart
Normal file
33
lib/main.dart
Normal file
@@ -0,0 +1,33 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
void main() {
|
||||
runApp(const MainApp());
|
||||
}
|
||||
|
||||
class MainApp extends StatelessWidget {
|
||||
const MainApp({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const MaterialApp(
|
||||
home: Scaffold(
|
||||
body: Column(
|
||||
children:
|
||||
Text("Sunset Coordinates"), // TODO: Text Field
|
||||
Text("Hours before Sunset"), // TODO: Text Field. Add Spanish translation "Horas antes Noche"
|
||||
Button(Text("Set Alarm")),
|
||||
// If enabled, this section controls "Pythagorian theorum" (spelling)
|
||||
// type math to check if the user has exited the distance from the
|
||||
// sunset location.
|
||||
Text("Enable Proximity Detector / Geofencing") // TODO: Checkbox
|
||||
Text("Current Coordinates"), // TODO: Read Only View with current location
|
||||
Row(
|
||||
children:
|
||||
Text("Distance"), // TODO: Text Field
|
||||
Text("* Miles, * Kilometers") // TODO: Radio Button Group
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user