Deconstructing Flutter
134 subscribers
2 photos
1 video
20 links
Download Telegram
Channel created
A collection of resources to learn how to make responsive UI in Flutter.

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
New issue on Deep Links in Flutter! Learn how to direct users to specific content in your app from external sources.
https://deconstructingflutter.substack.com/p/deep-links

Also, there is an issue on Overlays, haven’t posted it here last week:
https://deconstructingflutter.substack.com/p/deconstructing-flutter-vol-10-overlays
Just posted a new article on decorating the text inputs:

- InputDecoration vs. InputDecorationTheme
- How do they work together?
- What are the other properties?
- Hint, Label, Counter, etc
- Borders and BorderSide
- Gradients
Updated my old article about WidgetState with new info:
- examples with InkWell, Checkbox, AppBar, and a few other widgets
- using a fromMap method instead of resolveWith
Fragment shaders in Flutter let you create complex visuals that run directly on GPU. This issue covers some theory, practical examples, and implementation guides.