Just published a new article on the rendering pipeline in Flutter
https://medium.com/@pomis172/understanding-flutter-rendering-pipeline-build-phase-cf7e05aa12f1
https://medium.com/@pomis172/understanding-flutter-rendering-pipeline-build-phase-cf7e05aa12f1
Medium
Understanding Flutter rendering pipeline: Build phase
Flutter’s rendering pipeline is a highly optimized process that transforms your declarative UI code into pixels on the screen. With a deep…
A collection of resources to learn how to make responsive UI in Flutter.
https://deconstructingflutter.substack.com/p/responsive-design
https://deconstructingflutter.substack.com/p/responsive-design
Published an article on mistakes with TextFormFields in Flutter, such as not using:
- text input action
- submit callback
- proper input types
- text capitalization
- input formatter
- autofill hints and groups
https://medium.com/@pomis172/common-mistakes-with-textformfields-in-flutter-8adc8af1a9af
- text input action
- submit callback
- proper input types
- text capitalization
- input formatter
- autofill hints and groups
https://medium.com/@pomis172/common-mistakes-with-textformfields-in-flutter-8adc8af1a9af
Medium
Common mistakes with TextFormFields in Flutter
When it comes to mobile development, even small missteps in designing forms can have a big impact, not just on user experience but also on…
Some articles to broaden your knowledge of streams:
https://deconstructingflutter.substack.com/p/deconstructing-flutter-vol-5-streams
https://deconstructingflutter.substack.com/p/deconstructing-flutter-vol-5-streams
A collection of resorces to improve your workflow:
https://deconstructingflutter.substack.com/p/deconstructing-flutter-vol-6-productivity
https://deconstructingflutter.substack.com/p/deconstructing-flutter-vol-6-productivity
Substack
Deconstructing Flutter vol. 6: Productivity & Tooling
Setting up a good development workflow can save time and reduce frustration. This issue covers tools and techniques for automating tasks, customizing VSCode, managing Flutter versions, and debugging m
A new tutorial on Flutter's ButtonStyle:
- making some use of AI
- animating shape, text, and background
- hover state
- size adjustments
- elevation
https://medium.com/@pomis172/mastering-buttonstyle-in-flutter-95bbec3147fb
- making some use of AI
- animating shape, text, and background
- hover state
- size adjustments
- elevation
https://medium.com/@pomis172/mastering-buttonstyle-in-flutter-95bbec3147fb
Medium
Mastering ButtonStyle in Flutter
In this tutorial, we are going to implement a custom-styled button step by step. If you are not familiar with WidgetStates, I recommend…
A small collection of resources to learn more on gestures in Flutter
https://deconstructingflutter.substack.com/p/deconstructing-flutter-vol-7-gesture
https://deconstructingflutter.substack.com/p/deconstructing-flutter-vol-7-gesture
Substack
Deconstructing Flutter vol. 7: Gesture Detection
A curated collection of resources for implementing gestures in Flutter applications. These materials cover everything from basic touch handling to complex interactions
Updated the article about ListViews:
- one more example of what not to do (SingleChildScrollView + Column)
- more references to Flutter sources
- more explanations
- more measurements
https://medium.com/@pomis172/common-mistakes-with-listviews-in-flutter-f22e7dacfaf7
- one more example of what not to do (SingleChildScrollView + Column)
- more references to Flutter sources
- more explanations
- more measurements
https://medium.com/@pomis172/common-mistakes-with-listviews-in-flutter-f22e7dacfaf7
Medium
Common mistakes with ListViews in Flutter
The main advantage of using ListView.builder is that it utilises an optimisation mechanism that initialises only these items, that are…
Added more examples to the article about common mistakes with Images in Flutter:
- not setting sizes for images
- ignoring the Vector Graphics Compiler
https://medium.com/@pomis172/common-mistakes-with-images-in-flutter-aba46288e20d
- not setting sizes for images
- ignoring the Vector Graphics Compiler
https://medium.com/@pomis172/common-mistakes-with-images-in-flutter-aba46288e20d
Medium
Common mistakes with Images in Flutter
Images are one of the core features that almost every app uses. Yet, there are several very common ways to affect the application…
A new article about common mistakes with Text widgets in Flutter:
- not handling overflow
- typography inconsistencies
- poor contrast ratio
https://medium.com/@pomis172/common-mistakes-with-text-widgets-in-flutter-66aba072573d
- not handling overflow
- typography inconsistencies
- poor contrast ratio
https://medium.com/@pomis172/common-mistakes-with-text-widgets-in-flutter-66aba072573d
Medium
Common mistakes with Text widgets in Flutter
Drawing text is an essential part of every application, users should be able to read the text regardless of the contents or the weather…