This commit is contained in:
zoe 2022-06-28 22:47:35 +02:00
parent 45f720e313
commit bc8d31ccbc
5 changed files with 28 additions and 9 deletions

View file

@ -93,8 +93,19 @@ class _AuthPageState extends State<AuthPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Text("hello"),
body: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Text("copy-code-from-browser".i18n()),
TextFormField(
decoration: InputDecoration(
hintText: "123-ABC",
icon: const Icon(Icons.password),
labelText: "code-hint".i18n()))
],
),
),
);
}