Open In App

What’s New in Flutter 3.16?

Today we were going to discuss the Flutter new stable version which is 3.16 which was released mid of November 2023. In this new version, a lot of changes have been made by the Flutter team which we discussed point-wise

Changes in Flutter 3.16

  1. By Default, Use Material 3
  2. Add, Option in Edit Menu
  3. Selection Area Updates
  4. Changes In Focus Manager
  5. Automatic Reorder Menu Item For iOS
  6. Matric Transition Animation
  7. Paint Pattern Added to Flutter Test
  8. Scrolling Updates
  9. Engine Changes for Android
  10. Flutter Game Toolkit
  11. Mouse Scroll Wheel Support
  12. Predictive Back Navigation
  13. iOS App Extension
  14. Cloud-Based Google Map Styling
  15. macOS Video Player Plugin

In these, they do a lot of changes which should you know if you are a flutter developer, now we are going to elaborate on these briefly.



1. Default Use of Material 3

This is coming by default means when we create our first app the use material 3 comes true but we can do it true or false, if we do true then we can the material 3 colour which is not totally blue but when we make if false then we can see the previous colour which is totally blue,

useMaterial3: false, useMaterial3: true



2. Additional Options in Edit Menu

3. Selection Area Updates

4. Changes in Focus Manager

5. Automatic Reorder Menu Item for iOS

6. Matrix Transition Animation

7. Paint Pattern Added to Flutter Test

8. Scrolling Updates

9. Engine Changes for Android

For incrementing the performance flutter add impeller engine for android to better user experiences, we can enable this by two lines of code by writing this code in our android app manifest file. Code is given below.

<meta-data

android:name=”io.flutter.embedding.android.EnableImpeller”

android:value=”true” />

10. Flutter Game Toolkit

11. Mouse Scroll Wheel Support

12. Predictive Back Navigation

13. iOS App Extension

14. Cloud-Based Google Map Styling

15. macOS Video Player Plugin

Conclusion


Article Tags :