1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // ignore_for_file: prefer_const_constructors
- import 'package:flutter/material.dart';
- import 'package:sis_flutter/themes/themes.dart';
- class CustomBottomNavigationBar extends StatelessWidget {
- const CustomBottomNavigationBar({super.key});
- @override
- Widget build(BuildContext context) {
- return BottomNavigationBar(
- backgroundColor: AppTheme.divider,
- selectedItemColor: AppTheme.primary,
- unselectedItemColor: Colors.white,
- items: const [
- BottomNavigationBarItem(
- icon: Icon(
- Icons.home,
- color: Colors.white,
- ),
- label: 'Inicio',
- ),
- BottomNavigationBarItem(
- icon: Icon(
- Icons.calendar_today,
- color: Colors.white,
- ),
- label: 'Calendario',
- ),
- BottomNavigationBarItem(
- icon: Icon(
- Icons.person,
- color: Colors.white,
- ),
- label: "Perfil",
- ),
- ],
- );
- }
- }
|