28 lines
642 B
Dart
28 lines
642 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:komet/frontend/screens/auth/login_screen.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
title: 'Komet',
|
|
debugShowCheckedModeBanner: false,
|
|
theme: ThemeData(
|
|
useMaterial3: true,
|
|
brightness: Brightness.dark,
|
|
textTheme: GoogleFonts.outfitTextTheme(
|
|
ThemeData.dark().textTheme,
|
|
),
|
|
),
|
|
home: const LoginScreen(),
|
|
);
|
|
}
|
|
}
|