Skip to content

Commit

Permalink
🚨: dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuta1409 committed Mar 15, 2024
1 parent c2024eb commit 61b06bb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
22 changes: 11 additions & 11 deletions frontend/app_student/lib/menu/menu_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ class MenuIcon extends BottomNavigationBarItem {
required int selectedIndex,
required int itemIndex,
}) : super(
icon: SvgPicture.asset(
iconPath,
height: 20,
width: 20,
colorFilter: selectedIndex == itemIndex
? const ColorFilter.mode(Colors.blue, BlendMode.srcIn)
: null,
),
label: '',
);
}
icon: SvgPicture.asset(
iconPath,
height: 20,
width: 20,
colorFilter: selectedIndex == itemIndex
? const ColorFilter.mode(Colors.blue, BlendMode.srcIn)
: null,
),
label: '',
);
}
1 change: 0 additions & 1 deletion frontend/app_student/lib/menu/menu_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ class MenuBarViewState extends State<MenuBarView> {
iconPath: 'assets/images/disconnect.svg',
selectedIndex: _selectedIndex,
itemIndex: 0,

),
MenuIcon(
iconPath: 'assets/images/calendar.svg',
Expand Down

0 comments on commit 61b06bb

Please sign in to comment.