Files
rkmmobile/lib/main.dart

25 lines
574 B
Dart

import 'package:flutter/material.dart';
import 'package:rkm/utils/color_palette.dart';
import 'package:rkm/utils/routes.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primaryColor: ColorPalette.primary,
appBarTheme: AppBarTheme(
color: ColorPalette.appBar
)
),
debugShowCheckedModeBanner: false,
initialRoute: '/login',
routes: routes,
);
}
}