INNER CODE UNIT · Dart
MyApp
JideGuru/FlutterSocialAppUIKit · lib/app.dart:7
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: Constants.appName,
theme: themeData(ThemeConfig.lightTheme),
darkTheme: themeData(ThemeConfig.darkTheme),
home: Login(),
);
}
ThemeData themeData(ThemeData theme) {
return theme.copyWith(
textTheme: GoogleFonts.sourceSansProTextTheme(
theme.textTheme,
),
);