12345678910111213141516171819 |
-
- import 'dart:ui';
-
- class Item {
- double fontSize;
- Color color;
- String image;
-
- Item({ required this.fontSize, required this.color, required this.image });
- }
-
- class BarItem {
- String label;
- String page;
- Item normal;
- Item selected;
-
- BarItem ({ required this.label, required this.page, required this.normal, required this.selected });
- }
|