23 lines
551 B
Dart
23 lines
551 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'menu.dart';
|
|
|
|
Widget buildBottomNavigationBar({
|
|
required BuildContext context,
|
|
required int index,
|
|
required Function(int) onTap,
|
|
}) {
|
|
return BottomNavigationBar(
|
|
currentIndex: index,
|
|
onTap: onTap,
|
|
items: bottomNavItems,
|
|
type: BottomNavigationBarType.fixed,
|
|
selectedItemColor: Theme.of(context).colorScheme.primary,
|
|
unselectedItemColor: Colors.grey,
|
|
showSelectedLabels: true,
|
|
showUnselectedLabels: true,
|
|
backgroundColor: Colors.white,
|
|
elevation: 8,
|
|
);
|
|
}
|