Alot of changes
This commit is contained in:
26
lib/remaster/RemasteredMain.dart
Normal file
26
lib/remaster/RemasteredMain.dart
Normal file
@@ -0,0 +1,26 @@
|
||||
|
||||
|
||||
|
||||
import 'package:bus_infotainment/remaster/InitialStartup.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:shadcn_ui/shadcn_ui.dart';
|
||||
|
||||
class RemasteredApp extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
// TODO: implement build
|
||||
return ShadApp(
|
||||
darkTheme: ShadThemeData(
|
||||
brightness: Brightness.dark,
|
||||
colorScheme: ShadSlateColorScheme.dark(),
|
||||
),
|
||||
|
||||
routes: {
|
||||
'/': (context) => InitialStartup()
|
||||
},
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user