screm
This commit is contained in:
parent
45f720e313
commit
bc8d31ccbc
5 changed files with 28 additions and 9 deletions
|
@ -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()))
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue