Demystifying flutter constraints rules: Constraints go down (Part 1)

8 · Burhanuddin Rashid · Aug. 20, 2021, 10:04 a.m.
When we start to learn flutter from simple layout examples, everything works as expected. The widgets are aligned and sized properly. But once our application starts to grow especially when we have more dynamic UI, we start to see a lot of layout errors and issues. We can find temporary solutions on StackOverflow but deep inside we know something is missing, something about the layout constraint system that we don’t understand. Flutter constraints follow this simple rule. Constraints go down. Si...