How to change BottomNavigationBar background colour?
问题 Im making a simple app with tab bars. I need to change Bottom Navigation Bar's background colour to blue. The rest of the app should be in white background and navigation bar should be blue backgrounded. How should I do that? Setting canvasColor in ThemeData didnt work. Heres my code: import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatefulWidget { State<StatefulWidget> createState(){ return MyAppState(); } } class MyAppState extends State<MyApp>{