Flutter Tips 2

Flutter Tips 2
Series of tips and tricks related to Flutter mobile platform from Google - December 7, 2021

Rest of the Story:

Tips and Tricks

  1. Create application icons via online resource for Android and IOS platforms

    android/app/src/main/res (copy all midmap)
    ios/runner/assets.xcassets (copy all files to this xcassets from the download from appicongenerator tool)
  2. How can I remove the Flutter debug banner?
    MaterialApp(
      debugShowCheckedModeBanner: false,
    )
    
  3. Resources