fix bottom_nav_bar

merge-requests/927/head
Elham Rababh 4 years ago
parent 63af889e2f
commit ad1ae99707

@ -41,56 +41,61 @@ class _BottomNavBarState extends State<BottomNavBar> {
elevation: 4,
shape: CircularNotchedRectangle(),
color: Colors.white,
child: Padding(
padding: EdgeInsets.symmetric(horizontal: 18),
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
BottomNavigationItem(
icon: DoctorApp.home_1,
activeIcon: DoctorApp.home_active_1,
svgPath: "assets/images/svgs/bottom_nav/home-active.svg",
changeIndex: _changeIndex,
index: widget.index,
currentIndex: 0,
name: TranslationBase.of(context).home,
dashboardViewModel: widget.dashboardViewModel,
),
BottomNavigationItem(
icon: DoctorApp.schedule_1,
activeIcon: DoctorApp.schedule_active_1,
svgPath: "assets/images/svgs/bottom_nav/schedule-active.svg",
changeIndex: _changeIndex,
index: widget.index,
currentIndex: 1,
name: TranslationBase.of(context).mySchedule,
dashboardViewModel: widget.dashboardViewModel,
child: Container(
decoration: BoxDecoration(
border: Border.all(color: Color(0XFFEFEFEF), width: 1)
),
child: Padding(
padding: EdgeInsets.symmetric(horizontal: 18),
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
BottomNavigationItem(
icon: DoctorApp.home_1,
activeIcon: DoctorApp.home_active_1,
svgPath: "assets/images/svgs/bottom_nav/home-active.svg",
changeIndex: _changeIndex,
index: widget.index,
currentIndex: 0,
name: TranslationBase.of(context).home,
dashboardViewModel: widget.dashboardViewModel,
),
BottomNavigationItem(
icon: DoctorApp.schedule_1,
activeIcon: DoctorApp.schedule_active_1,
svgPath: "assets/images/svgs/bottom_nav/schedule-active.svg",
changeIndex: _changeIndex,
index: widget.index,
currentIndex: 1,
name: TranslationBase.of(context).mySchedule,
dashboardViewModel: widget.dashboardViewModel,
),
BottomNavigationItem(
icon: DoctorApp.qr_reader,
activeIcon: DoctorApp.qr_reader_active_1,
svgPath: "assets/images/svgs/bottom_nav/reader-active.svg",
changeIndex: _changeIndex,
index: widget.index,
currentIndex: 2,
name: TranslationBase.of(context).qr,
dashboardViewModel: widget.dashboardViewModel,
),
BottomNavigationItem(
icon: DoctorApp.qr_reader,
activeIcon: DoctorApp.qr_reader_active_1,
svgPath: "assets/images/svgs/bottom_nav/reader-active.svg",
changeIndex: _changeIndex,
index: widget.index,
currentIndex: 2,
name: TranslationBase.of(context).qr,
dashboardViewModel: widget.dashboardViewModel,
),
BottomNavigationItem(
icon: DoctorApp.dr_reply_1,
activeIcon: DoctorApp.dr_reply_active_1,
svgPath: "assets/images/svgs/bottom_nav/reply-active.svg",
changeIndex: _changeIndex,
index: widget.index,
currentIndex: 3,
name: TranslationBase.of(context).replay2,
dashboardViewModel: widget.dashboardViewModel,
),
BottomNavigationItem(
icon: DoctorApp.dr_reply_1,
activeIcon: DoctorApp.dr_reply_active_1,
svgPath: "assets/images/svgs/bottom_nav/reply-active.svg",
changeIndex: _changeIndex,
index: widget.index,
currentIndex: 3,
name: TranslationBase.of(context).replay2,
dashboardViewModel: widget.dashboardViewModel,
),
],
),
],
),
),
),
);

Loading…
Cancel
Save