Add login page and basic event select page.

This commit is contained in:
Raktbastr 2025-02-03 15:04:15 -06:00
parent 71870260e4
commit a5603f21f1
7 changed files with 143 additions and 97 deletions

20
lib/eventpicker.dart Normal file
View file

@ -0,0 +1,20 @@
// login.dart
import 'package:flutter/material.dart';
class EventPicker extends StatelessWidget {
const EventPicker({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Event', style: TextStyle(color: Colors.white)),
backgroundColor: const Color.fromARGB(255, 19, 81, 179),
iconTheme: const IconThemeData(color: Colors.white),
),
body: Center(
child: Text('Login Page Content'),
),
);
}
}