register_verify - Tweaked Button+Text placement
This commit is contained in:
parent
a3baa80127
commit
0413e1d7f1
2 changed files with 16 additions and 13 deletions
lib/components
|
@ -67,8 +67,7 @@ class _MenuState extends State<Menu> {
|
|||
if (!isLoggedIn) {
|
||||
_selectedIndex = oldSelectedIndex;
|
||||
Navigator.of(context).pushReplacement(MaterialPageRoute(
|
||||
builder: (context) => const Menu(initialScreen: 2))
|
||||
);
|
||||
builder: (context) => const Menu(initialScreen: 2)));
|
||||
Navigator.pushNamed(context, '/login');
|
||||
}
|
||||
});
|
||||
|
@ -87,8 +86,7 @@ class _MenuState extends State<Menu> {
|
|||
if (!isLoggedIn) {
|
||||
_selectedIndex = oldSelectedIndex;
|
||||
Navigator.of(context).pushReplacement(MaterialPageRoute(
|
||||
builder: (context) => const Menu(initialScreen: 2))
|
||||
);
|
||||
builder: (context) => const Menu(initialScreen: 2)));
|
||||
Navigator.pushNamed(context, '/login');
|
||||
}
|
||||
});
|
||||
|
|
|
@ -56,7 +56,7 @@ class RegisterVerifyState extends State<RegisterVerify> {
|
|||
],
|
||||
),
|
||||
const SizedBox(
|
||||
height: 75,
|
||||
height: 50,
|
||||
),
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
|
@ -73,18 +73,23 @@ class RegisterVerifyState extends State<RegisterVerify> {
|
|||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 30,),
|
||||
const SizedBox(
|
||||
height: 25,
|
||||
),
|
||||
ElevatedButton(
|
||||
style: ButtonStyle(
|
||||
padding: MaterialStateProperty.all(const EdgeInsets.all(15.0)),
|
||||
foregroundColor:
|
||||
MaterialStateProperty.all(const Color(0xff8B0000)),
|
||||
backgroundColor:
|
||||
MaterialStateProperty.all(const Color(0xff8B0000)),
|
||||
shape: MaterialStateProperty.all<RoundedRectangleBorder>(
|
||||
padding: MaterialStateProperty.all(
|
||||
const EdgeInsets.all(15.0)),
|
||||
foregroundColor: MaterialStateProperty.all(
|
||||
const Color(0xff8B0000)),
|
||||
backgroundColor: MaterialStateProperty.all(
|
||||
const Color(0xff8B0000)),
|
||||
shape: MaterialStateProperty.all<
|
||||
RoundedRectangleBorder>(
|
||||
RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(18.0),
|
||||
side: const BorderSide(color: Colors.black)))),
|
||||
side: const BorderSide(
|
||||
color: Colors.black)))),
|
||||
onPressed: () {
|
||||
Navigator.pushReplacementNamed(context, '/login');
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue