switching between text alignment

This commit is contained in:
2024-07-30 09:44:39 +02:00
parent 029d36309b
commit a7d150def2
2 changed files with 55 additions and 49 deletions

View File

@@ -322,6 +322,8 @@ class _RegisterState extends State<Register> {
SizedBox( SizedBox(
width: 450.0, width: 450.0,
height: 100.0, height: 100.0,
child: Padding(
padding: const EdgeInsets.all(30.0),
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.end, mainAxisAlignment: MainAxisAlignment.end,
children: [ children: [
@@ -347,6 +349,7 @@ class _RegisterState extends State<Register> {
) )
], ],
), ),
),
) )
], ],
), ),

View File

@@ -205,6 +205,8 @@ class _SignInState extends State<SignIn> {
SizedBox( SizedBox(
width: 450.0, width: 450.0,
height: 100.0, height: 100.0,
child: Padding(
padding: const EdgeInsets.all(15.0),
child: Row( child: Row(
mainAxisAlignment: MainAxisAlignment.end, mainAxisAlignment: MainAxisAlignment.end,
children: [ children: [
@@ -235,6 +237,7 @@ class _SignInState extends State<SignIn> {
), ),
], ],
), ),
),
) )
], ],
), ),