0% found this document useful (0 votes)
160 views

16.1 Flutter-Widget-Types-Slide PDF

This document discusses two types of widgets in Flutter - visible widgets like buttons and text that are drawn onto the screen, and invisible layout and control widgets like Row, Column, and Container that give structure to an app and control how visible widgets are positioned without being seen directly. Invisible widgets indirectly control the visible user interface.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
160 views

16.1 Flutter-Widget-Types-Slide PDF

This document discusses two types of widgets in Flutter - visible widgets like buttons and text that are drawn onto the screen, and invisible layout and control widgets like Row, Column, and Container that give structure to an app and control how visible widgets are positioned without being seen directly. Invisible widgets indirectly control the visible user interface.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Different Types of Widgets

Output & Input (Visible) Layout & Control (Invisible)

RaisedButton(), Text(), Card(), … Row(), Column(), ListView(), …

Container()

Give your app structure and control


Drawn onto the screen: “What the
how visible widgets are drawn onto
user sees”
the screen (incirectly visible)
Visible vs Invisible Widgets
Column

Invisble

Button
Visible

Text

Row
Text
Row

Column Column Column

You might also like