The new version of Flutter makes available for us a lot of new features. From the improvement of the Material 3 support to Impeller preview and using Platform Channels in any isolate.
π A detailed list of changes can be found in the announcement.
https://medium.com/flutter/whats-new-in-flutter-3-7-38cbea71133c
#announcement #article
π A detailed list of changes can be found in the announcement.
https://medium.com/flutter/whats-new-in-flutter-3-7-38cbea71133c
#announcement #article
π₯2
With a fresh remember right after the Flutter Forward event, the Flutter team shared their vision regarding the nearest Flutterβs future and what they plan to work on and improve.
π More details by the link.
https://medium.com/flutter/whats-next-for-flutter-b94ce089f49c
#article
π More details by the link.
https://medium.com/flutter/whats-next-for-flutter-b94ce089f49c
#article
π2π©1
Sad info about how recently Googleβs layoffs affected the Fuchsia team and Area 120. Yes, 16% is not low, but I don't think it means the end of the project.
π More details are at the link.
https://9to5google.com/2023/01/21/fuchsia-area-120-google-layoffs/
#news
π More details are at the link.
https://9to5google.com/2023/01/21/fuchsia-area-120-google-layoffs/
#news
π’1π©1
The Flutter Dart Code plugin for VSCode recently received an update. This release has some pretty useful features:
π type hierarchy;
π call hierarchy.
π But that's not all, you can see a full changelog at the link.
https://dartcode.org/releases/v3-58/
#update
π type hierarchy;
π call hierarchy.
π But that's not all, you can see a full changelog at the link.
https://dartcode.org/releases/v3-58/
#update
π3
A lot of people, for sure, have tried the Holobooth show-case for the Flutter Forward event. And it is impressed Flutter's case from my view.
π How it was created, you can read in the article by the link.
https://medium.com/flutter/how-its-made-holobooth-6473f3d018dd
#article
π How it was created, you can read in the article by the link.
https://medium.com/flutter/how-its-made-holobooth-6473f3d018dd
#article
π4π©1
I think many people remember the Wonderous app. Recently the authors announced a new version with support for foldable devices, and tablets including horizontal orientation.
π More details in the article by the link.
https://medium.com/flutter/adapting-wonderous-to-larger-device-formats-ac51e1c00bc0
#article
π More details in the article by the link.
https://medium.com/flutter/adapting-wonderous-to-larger-device-formats-ac51e1c00bc0
#article
π3π©1
Tests are very useful for the overall quality of the product. But even if you write a lot of tests, you probably use a small number of asserts. That's because they easily cover the most popular cases. But in fact, there are many more asserts.
π The good cheat sheet can be found at the link.
https://medium.com/flutter-community/assertions-in-dart-and-flutter-tests-an-ultimate-cheat-sheet-f6d91510fe6b
#article #tests
π The good cheat sheet can be found at the link.
https://medium.com/flutter-community/assertions-in-dart-and-flutter-tests-an-ultimate-cheat-sheet-f6d91510fe6b
#article #tests
π3π©1
Finally, has the Flutter plugin for IntelliJ been updated also. In the release:
π setup Flutter SDK for the project separately;
π option for automatically running tests before git commit.
π Changelog is available at the link.
https://plugins.jetbrains.com/plugin/9212-flutter/versions/stable/285889
#update
π setup Flutter SDK for the project separately;
π option for automatically running tests before git commit.
π Changelog is available at the link.
https://plugins.jetbrains.com/plugin/9212-flutter/versions/stable/285889
#update
π3π©1
Since Dart can be compiled for many platforms, it can be successfully used to create useful cross-platform CLI utilities.
π How to automate the building of such a cross-platform utility with Codemagic, read in the article by Dmitry Zhifarsky.
https://blog.codemagic.io/cross-compiling-dart-cli-applications-with-codemagic/
#article #codemagic #cicd
π How to automate the building of such a cross-platform utility with Codemagic, read in the article by Dmitry Zhifarsky.
https://blog.codemagic.io/cross-compiling-dart-cli-applications-with-codemagic/
#article #codemagic #cicd
π2π©1
Flutter DevTools provides us a lot of useful tools. If you're already a sophisticated developer, you're probably very familiar with them and use them regularly.
π Those who are not yet so friendly with these tools, can get acquainted with the series of articles from Ashita Prasad.
https://medium.com/@fluttergems/mastering-dart-flutter-devtools-series-introduction-installation-part-1-of-8-4f703a8cfcc8
#article
π Those who are not yet so friendly with these tools, can get acquainted with the series of articles from Ashita Prasad.
https://medium.com/@fluttergems/mastering-dart-flutter-devtools-series-introduction-installation-part-1-of-8-4f703a8cfcc8
#article
π2π©1
Flutter can also be run on wearable devices like smartwatches. As an example, Renan's WearOS game.
π Read more in the tweet at the link.
https://twitter.com/renotanumber/status/1614990869685497857?s=67&t=IfKBJMgyLX5T_eAlkeDyqg
#ohmyflutter #omf #flutterdev #flutter #challenge
π Read more in the tweet at the link.
https://twitter.com/renotanumber/status/1614990869685497857?s=67&t=IfKBJMgyLX5T_eAlkeDyqg
#ohmyflutter #omf #flutterdev #flutter #challenge
π2π©1
It is easy enough to embed Unity view into the Flutter application.
π How to do it, see the article by Mohammed Babelly.
https://blog.codemagic.io/how-to-embed-an-android-unity-game-in-a-flutter-app/
#article
π How to do it, see the article by Mohammed Babelly.
https://blog.codemagic.io/how-to-embed-an-android-unity-game-in-a-flutter-app/
#article
π1π©1
For now, when various chats and messengers are unremovable parts of life, the feature of mentioning is not only familiar for the user but sometimes is a must-have.
π Package mentionable_text_field can help integrate this into your app.
https://pub.dev/packages/mentionable_text_field
#package
π Package mentionable_text_field can help integrate this into your app.
https://pub.dev/packages/mentionable_text_field
#package
π1π©1
Application security is one of the crucial aspects of development. If the application is regularly and successfully attacked, no matter how good the user experience is, it will end up badly.
π Scott Hatfield's thoughts on approaches to securing a Flutter application in this article.
https://medium.com/@Toglefritz/three-advanced-ways-to-secure-a-flutter-app-92b38c626ce0
#article
π Scott Hatfield's thoughts on approaches to securing a Flutter application in this article.
https://medium.com/@Toglefritz/three-advanced-ways-to-secure-a-flutter-app-92b38c626ce0
#article
π1
The Flutter team is working actively on the new rendering backend named Impeller. You can already see quite positive results, such as those shown at Flutter Forward.
https://www.youtube.com/watch?v=Z7v-YRdHusM
π An introduction to what an Impeller is in the video by Chinmay Garde.
https://www.youtube.com/watch?v=gKrYWC_SDxQ
#video
https://www.youtube.com/watch?v=Z7v-YRdHusM
π An introduction to what an Impeller is in the video by Chinmay Garde.
https://www.youtube.com/watch?v=gKrYWC_SDxQ
#video
π₯1
In the new episode of Widget of the Week, the Flutter team talks about RawMagnifier.
π More details by the link.
https://www.youtube.com/watch?v=YBRkVCRP1Gw
#widgetoftheweek
π More details by the link.
https://www.youtube.com/watch?v=YBRkVCRP1Gw
#widgetoftheweek
π1π©1
A fresh quarterly survey from the Flutter team is up.
π Leave feedback on topics of interest to the team.
https://google.qualtrics.com/jfe/form/SV_4TKhBYKWMAacbu6
#survey
π Leave feedback on topics of interest to the team.
https://google.qualtrics.com/jfe/form/SV_4TKhBYKWMAacbu6
#survey
π1
Shaders are special programs GPU uses that allow modifying the final view. With their help, we can implement various effects, including very complicated ones, even those that are not possible to reach any other way except through shaders.
π You can start your journey into the shader world from the article series from Karthik Ponnam.
https://karthikponnam.medium.com/flutter-shaders-an-introduction-7dd29632e0dd
https://karthikponnam.medium.com/creating-custom-shaders-in-flutter-a-step-by-step-guide-49ec86bec20d
https://karthikponnam.medium.com/image-manipulation-with-shaders-flutter-aa11027b4a4d
#article
π You can start your journey into the shader world from the article series from Karthik Ponnam.
https://karthikponnam.medium.com/flutter-shaders-an-introduction-7dd29632e0dd
https://karthikponnam.medium.com/creating-custom-shaders-in-flutter-a-step-by-step-guide-49ec86bec20d
https://karthikponnam.medium.com/image-manipulation-with-shaders-flutter-aa11027b4a4d
#article
π3π©1
Two decades ago, Google launched a global coding competition called Code Jam, which challenged programmers of all levels to test and hone their skills by racing to solve algorithmic problems.
π Do you want to celebrate this anniversary with Google in another programming contest? You can sign up by clicking here.
https://developers.googleblog.com/2023/02/celebrate-googles-coding-competitions.html
#event
π Do you want to celebrate this anniversary with Google in another programming contest? You can sign up by clicking here.
https://developers.googleblog.com/2023/02/celebrate-googles-coding-competitions.html
#event
π₯1π©1
A walkthrough of a Flutter beginner's code lab is out.
π Filip HrΓ‘Δek himself helps with this.
https://www.youtube.com/watch?v=8sAyPDLorek
#video
π Filip HrΓ‘Δek himself helps with this.
https://www.youtube.com/watch?v=8sAyPDLorek
#video
π2π©1
The Flutter plugin for VSCode recently received an update. This release has a lot of small improvements and fixes.
π A detailed list is available here.
https://dartcode.org/releases/v3-60/
#update
π A detailed list is available here.
https://dartcode.org/releases/v3-60/
#update
π2π©1