Skip to content

Instantly share code, notes, and snippets.

View shaikhsiddik's full-sized avatar
💯
Focusing

Shaikh Siddik shaikhsiddik

💯
Focusing
View GitHub Profile
@shaikhsiddik
shaikhsiddik / Custom BottomNavigation
Created August 30, 2024 05:38
Set bottomNavigationBar to gradient color when active
import 'package:flutter/material.dart';
class GradientBottomNavigationBar extends StatefulWidget {
@override
_GradientBottomNavigationBarState createState() => _GradientBottomNavigationBarState();
}
class _GradientBottomNavigationBarState extends State<GradientBottomNavigationBar> {
int _selectedIndex = 0;