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