Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
Nopylacetat
2023-10-20 18:16:12 +02:00
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();
}
}