Files
momo/lib/fluent/login.dart
quantulr ac65c1dec0 init
2023-02-06 23:45:56 +08:00

34 lines
812 B
Dart

import 'package:fluent_ui/fluent_ui.dart';
class LoginPage extends StatelessWidget {
const LoginPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
// padding: EdgeInsets.all(100),
color: Colors.white,
child: ScaffoldPage(
header: PageHeader(
title: Text("登录"),
),
content: Container(
padding: EdgeInsets.fromLTRB(50, 0, 50, 0),
child: ListView(
children: [
TextBox(
header: "账号",
placeholder: "请输入账号",
),
TextBox(
header: "密码",
placeholder: "请输入密码",
),
],
),
),
),
);
}
}