fix: some ui bug

This commit is contained in:
2025-11-03 09:04:28 +03:30
parent f93d9bb275
commit 6269445536
5 changed files with 18 additions and 10 deletions

View File

@@ -70,6 +70,9 @@ class StewardRootPage extends GetView<StewardRootLogic> {
icon: Assets.vec.buySvg.path,
isSelected: controller.currentPage.value == 0,
onTap: () {
Get.nestedKey(
stewardFirstKey,
)?.currentState?.popUntil((route) => route.isFirst);
Get.nestedKey(
stewardSecondKey,
)?.currentState?.popUntil((route) => route.isFirst);
@@ -85,6 +88,9 @@ class StewardRootPage extends GetView<StewardRootLogic> {
Get.nestedKey(
stewardFirstKey,
)?.currentState?.popUntil((route) => route.isFirst);
Get.nestedKey(
stewardSecondKey,
)?.currentState?.popUntil((route) => route.isFirst);
controller.changePage(1);
},
),