Files
momo/lib/screens/login.dart

16 lines
319 B
Dart
Raw Normal View History

2023-02-06 23:45:56 +08:00
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();
}
}