What is Flutter Layout System?

 

Flutter uses a constraint-based layout system.
Each widget tells its parent how big it wants to be, and the parent gives constraints in return.

Common Layout Widgets:

  • Container

  • Row

  • Column

  • Expanded

  • Flexible

  • Stack

  • Wrap

Comments

Popular posts from this blog

1. What is Flutter?

What is FutureBuilder and StreamBuilder?