This commit is contained in:
quantulr
2023-02-06 23:45:56 +08:00
commit ac65c1dec0
147 changed files with 5605 additions and 0 deletions

15
lib/screens/login.dart Normal file
View File

@ -0,0 +1,15 @@
import 'package:fluent_ui/fluent_ui.dart';
class Login extends StatefulWidget {
const Login({Key? key}) : super(key: key);
@override
State<Login> createState() => _LoginState();
}
class _LoginState extends State<Login> {
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}