Mih AUth Forgot and Reset router update

This commit is contained in:
2025-08-26 19:06:40 +02:00
parent e6942c4006
commit aa54cf054f
7 changed files with 840 additions and 70 deletions

View File

@@ -68,20 +68,16 @@ class _MihAuthenticationState extends State<MihAuthentication> {
);
}
MihPackageAction getAction() {
return MihPackageAction(
icon: Padding(
padding: const EdgeInsets.only(left: 10.0),
child: const Icon(MihIcons.mihLogo),
Widget getAction() {
return Padding(
padding: const EdgeInsets.only(left: 5.0),
child: MihPackageAction(
icon: const Icon(MihIcons.mihLogo),
iconSize: 45,
onTap: () {
context.goNamed("aboutMih", extra: 0);
},
),
iconSize: 45,
onTap: () {
context.goNamed("aboutMih", extra: 0);
// Navigator.of(context).pushNamed(
// '/about',
// arguments: 0,
// );
},
);
}
}