11 lines
240 B
Dart
11 lines
240 B
Dart
|
import 'package:flutter/cupertino.dart';
|
||
|
|
||
|
class AppBottomNavItem {
|
||
|
IconData icon;
|
||
|
IconData activeIcon;
|
||
|
String? label;
|
||
|
Widget? page;
|
||
|
AppBottomNavItem(
|
||
|
{required this.icon, required this.activeIcon, this.label, this.page});
|
||
|
}
|