Skip to content

Commit f39f624

Browse files
committed
Update NavigationBar.dart
1 parent 9a0c0c4 commit f39f624

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/NavigationBar/NavigationBar.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,11 @@ class _NavigationBarItemState extends State<NavigationBarItem> {
1212
return LayoutBuilder(
1313
builder: (BuildContext context, BoxConstraints constraints) {
1414
if (constraints.maxWidth >= 1200) {
15-
//Desktop
1615
return DesktopNavBar();
1716
} else if (constraints.maxWidth >= 800 &&
1817
constraints.maxWidth <= 1200) {
19-
//Tablet
2018
return DesktopNavBar();
2119
} else {
22-
//Mobile
2320
return MobileNavBar();
2421
}
2522
},

0 commit comments

Comments
 (0)