Rewrote pretty much all of it. New logo/icons. Overall did alot tbh.

This commit is contained in:
Raktbastr 2026-01-22 22:44:02 -06:00
parent 5858a4a231
commit d128768478
142 changed files with 968 additions and 3875 deletions

View file

@ -1,8 +1,9 @@
import 'package:flutter/material.dart';
import 'login.dart';
import 'package:laserscouter/core/theme.dart';
import 'package:laserscouter/login.dart';
void main() {
runApp(MyApp());
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
@ -12,11 +13,8 @@ class MyApp extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
title: 'Laser Scouter',
theme: ThemeData(
primarySwatch: Colors.blue,
fontFamily: 'Ocraextended',
),
theme: laserTheme,
home: LoginPage(),
);
}
}
}