Different navigaton

This commit is contained in:
SomnusVeritas
2023-10-20 18:14:46 +02:00
parent f8e2c2291d
commit c55c96c8b8
5 changed files with 347 additions and 3 deletions

View 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();
}
}