Files
blog_app/lib/layout/nav_bar.dart
2025-11-16 22:10:53 +08:00

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,
);
}