Skip to content

Commit

Permalink
Boilerplate for bottom navigation bar
Browse files Browse the repository at this point in the history
  • Loading branch information
kawaijoe committed Jul 14, 2024
1 parent 6f02bef commit 9ba20ca
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
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 {}
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 {}

0 comments on commit 9ba20ca

Please sign in to comment.