Add current project to Git repo.

This commit is contained in:
2025-07-11 12:13:37 -07:00
parent de1e06d160
commit 887cbcc5b4
119 changed files with 4309 additions and 2 deletions

33
lib/main.dart Normal file
View 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
),
),
),
);
}
}