fix : new bottom sheet

This commit is contained in:
2025-06-30 08:51:11 +03:30
parent cae4ed4e06
commit 898f870b54
6 changed files with 157 additions and 234 deletions

View File

@@ -44,23 +44,23 @@ class RootPage extends GetView<RootLogic> {
sizing: StackFit.expand,
),
extendBody: true,
bottomNavigationBar: BottomNavigation1(
bottomNavigationBar: RBottomNavigation(
items: [
BottomNavigation1Item(
RBottomNavigationItem(
icon: Assets.vec.filterSvg.path,
label: 'درخواست‌ها',
isSelected: currentIndex.value == 0,
onTap: () => controller.changePage(0),
),
BottomNavigation1Item(
RBottomNavigationItem(
icon: Assets.vec.mapSvg.path,
label: 'نقشه',
isSelected: currentIndex.value == 1,
onTap: () => controller.changePage(1),
),
BottomNavigation1Item(
RBottomNavigationItem(
icon: Assets.vec.profileUserSvg.path,
label: 'پروفایل',
isSelected: currentIndex.value == 2,