5 Cool New Things in Flutter 3.27
A few days ago, a new Flutter version was published. Read about 5 cool new things in Flutter 3.27 here.
The Flutter team published version 3.27 on December, 11th of 2024. Here are 5 cool new things from the update that I like the most.
1New CarouselView features
The recently added CarouselView gets some new features to customize it further. You can now create weighted layouts more easily. While I like these a lot, I am still waiting for a built-in indicator to quickly see where in the collection I am currently at.
2Spacing for Row and Column
The best improvement in the entire changelog! No more SizedBox
es inside your children collection of a Row or a Column. You can now define a single value with the spacing property. It will be put between the child widgets, but not before the first one or after the last one. Really good change!