28 lines
641 B
Dart
28 lines
641 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class FooterNav extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return BottomNavigationBar(
|
|
items: [
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.home),
|
|
label: 'Home',
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.search),
|
|
label: 'Search',
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.shopping_cart),
|
|
label: 'Cart',
|
|
),
|
|
BottomNavigationBarItem(
|
|
icon: Icon(Icons.account_circle),
|
|
label: 'Account',
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|