Merge remote-tracking branch 'refs/remotes/origin/main'
This commit is contained in:
17
lib/pages/splash_page.dart
Normal file
17
lib/pages/splash_page.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'login_page.dart';
|
||||
|
||||
class SplashPage extends StatefulWidget {
|
||||
const SplashPage({super.key});
|
||||
|
||||
@override
|
||||
State<SplashPage> createState() => _SplashPageState();
|
||||
}
|
||||
|
||||
class _SplashPageState extends State<SplashPage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const LoginPage();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user