-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Boilerplate for bottom navigation bar
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
forui/lib/src/widgets/bottom_navigation_bar/bottom_navigation_bar.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import 'package:flutter/widgets.dart'; | ||
|
||
part 'bottom_navigation_bar_item.dart'; | ||
|
||
class FBottomNavigationBar extends StatelessWidget { | ||
const FBottomNavigationBar({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return const Placeholder(); | ||
} | ||
} | ||
|
||
class FBottomNavigationBarStyle {} |
12 changes: 12 additions & 0 deletions
12
forui/lib/src/widgets/bottom_navigation_bar/bottom_navigation_bar_item.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
part of 'bottom_navigation_bar.dart'; | ||
|
||
class FBottomNavigationBarItem extends StatelessWidget { | ||
const FBottomNavigationBarItem({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return const Placeholder(); | ||
} | ||
} | ||
|
||
class FBottomNavigationBarItemStyle {} |