2024-03-18 13:23:58 +08:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
|
|
|
|
class AppBottomNavItem {
|
2024-03-19 08:59:08 +08:00
|
|
|
Icon icon;
|
|
|
|
Icon activeIcon;
|
2024-03-18 13:23:58 +08:00
|
|
|
String? label;
|
|
|
|
Widget? page;
|
2024-03-19 08:59:08 +08:00
|
|
|
AppBottomNavItem(
|
|
|
|
{required this.icon, required this.activeIcon, this.label, this.page});
|
2024-03-18 13:23:58 +08:00
|
|
|
}
|