sds
unknown
dart
2 years ago
400 B
2
Indexable
Never
void main() { runApp( MaterialApp( debugShowCheckedModeBanner: false, initialRoute: 'splash', routes: { 'splash': (context) => const SplashScreen(), 'login': (context) => const LoginScreen(), 'register': (context) => const RegisterScreen(), }, theme: ThemeData( fontFamily: GoogleFonts.ubuntu().fontFamily, ),), ); }