Fix template/prototype code now that I have an Internet connection.

This commit is contained in:
2025-07-11 12:17:47 -07:00
parent 887cbcc5b4
commit 15a32727c5

View File

@@ -9,24 +9,36 @@ class MainApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const MaterialApp(
return MaterialApp(
home: Scaffold(
body: Column(
children:
children: [
Text("Sunset Coordinates"), // TODO: Text Field
Text("Hours before Sunset"), // TODO: Text Field. Add Spanish translation "Horas antes Noche"
Button(Text("Set Alarm")),
Text(
"Hours before Sunset",
), // TODO: Text Field. Add Spanish translation "Horas antes Noche"
TextButton(
child: Text("Set Alarm"),
onPressed: () {
null;
},
),
// 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
Text("Enable Proximity Detector / Geofencing"), // TODO: Checkbox
Text(
"Current Coordinates",
), // TODO: Read Only View with current location
Row(
children:
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text("Distance"), // TODO: Text Field
Text("* Miles, * Kilometers") // TODO: Radio Button Group
Text("* Miles, * Kilometers"), // TODO: Radio Button Group
],
),
),
],
),
),
);
}