26 lines
675 B
Dart
26 lines
675 B
Dart
|
|
import 'package:english_learning/features/splash/screens/splash_screen.dart';
|
||
|
|
import 'package:flutter/material.dart';
|
||
|
|
import 'package:google_fonts/google_fonts.dart';
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
runApp(const MyApp());
|
||
|
|
}
|
||
|
|
|
||
|
|
class MyApp extends StatelessWidget {
|
||
|
|
const MyApp({super.key});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return MaterialApp(
|
||
|
|
debugShowCheckedModeBanner: false,
|
||
|
|
theme: ThemeData().copyWith(
|
||
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
|
||
|
|
scaffoldBackgroundColor: Colors.white,
|
||
|
|
textTheme: GoogleFonts.interTextTheme(),
|
||
|
|
useMaterial3: true,
|
||
|
|
),
|
||
|
|
home: const SplashScreen(),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|