Add login page and basic event select page.
This commit is contained in:
parent
71870260e4
commit
a5603f21f1
7 changed files with 143 additions and 97 deletions
20
lib/eventpicker.dart
Normal file
20
lib/eventpicker.dart
Normal 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'),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue