Added inital API call. Downloads and parses event info.

This commit is contained in:
Raktbastr 2025-02-03 15:45:15 -06:00
parent a5603f21f1
commit ae70712e7c
2 changed files with 24 additions and 7 deletions

View file

@ -1,9 +1,8 @@
// login.dart
import 'package:flutter/material.dart';
import 'login.dart';
class EventPicker extends StatelessWidget {
const EventPicker({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
@ -12,9 +11,6 @@ class EventPicker extends StatelessWidget {
backgroundColor: const Color.fromARGB(255, 19, 81, 179),
iconTheme: const IconThemeData(color: Colors.white),
),
body: Center(
child: Text('Login Page Content'),
),
);
}
} // Call the function with the apiKey
}