rafalbednarczuk / curved_navigation_bar

Animated Curved Navigation Bar in Flutter
BSD 2-Clause "Simplified" License
683 stars 239 forks source link

color: Color of NavigationBar, default Colors.white not change #144

Closed tedyjuan closed 3 months ago

tedyjuan commented 4 months ago

extendBody: true, bottomNavigationBar: CurvedNavigationBar( backgroundColor: Colors.transparent, onTap: (index) {}, height: 60, color: Color(0xFF4C53A5), // color not working items: [ CurvedNavigationBarItem( icon: const Icon(Icons.add, size: 30, color: Colors.white), label: "Add"), CurvedNavigationBarItem( icon: const Icon(Icons.list, size: 30, color: Colors.white), label: "List"), CurvedNavigationBarItem( icon: Icon(Icons.compare_arrows, size: 30, color: Colors.white), label: "Compare"), ], ),

rafalbednarczuk commented 3 months ago

It's working image

Also, there is nothing like CurvedNavigationBarItem in my package, probably you are using a different package that has this bug