39 lines
890 B
Dart
39 lines
890 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
|
|
import '../../../app/router/route_names.dart';
|
|
|
|
class SplashScreen extends StatefulWidget {
|
|
const SplashScreen({super.key});
|
|
|
|
@override
|
|
State<SplashScreen> createState() => _SplashScreenState();
|
|
}
|
|
|
|
class _SplashScreenState extends State<SplashScreen> {
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
Future<void>.delayed(const Duration(milliseconds: 700), () {
|
|
if (!mounted) return;
|
|
context.go(RouteNames.home);
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Scaffold(
|
|
body: Center(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(Icons.menu_book_rounded, size: 48),
|
|
SizedBox(height: 12),
|
|
Text('Reader App'),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|