Flutter

Widgets

Michelle Hwang 2021. 3. 22. 15:08

Text Widget : api.flutter.dev/flutter/widgets/Text-class.html 

 

Text class - widgets library - Dart API

A run of text with a single style. The Text widget displays a string of text with single style. The string might break across multiple lines or might all be displayed on the same line depending on the layout constraints. The style argument is optional. Whe

api.flutter.dev

AppBar : api.flutter.dev/flutter/material/AppBar-class.html

 

AppBar class - material library - Dart API

A material design app bar. An app bar consists of a toolbar and potentially other widgets, such as a TabBar and a FlexibleSpaceBar. App bars typically expose one or more common actions with IconButtons which are optionally followed by a PopupMenuButton for

api.flutter.dev

 

Column : api.flutter.dev/flutter/widgets/Column-class.html 

 

Column class - widgets library - Dart API

A widget that displays its children in a vertical array. To cause a child to expand to fill the available vertical space, wrap the child in an Expanded widget. The Column widget does not scroll (and in general it is considered an error to have more childre

api.flutter.dev

TextField : flutter.dev/docs/cookbook/forms/text-input

 

Create and style a text field

How to implement a text field.

flutter.dev

ElevatedButton : api.flutter.dev/flutter/material/ElevatedButton-class.html

 

ElevatedButton class - material library - Dart API

A Material Design "elevated button". Use elevated buttons to add dimension to otherwise mostly flat layouts, e.g. in long busy lists of content, or in wide spaces. Avoid using elevated buttons on already-elevated content such as dialogs or cards. An elevat

api.flutter.dev

Image : api.flutter.dev/flutter/widgets/Image-class.html

 

Image class - widgets library - Dart API

A widget that displays an image. Several constructors are provided for the various ways that an image can be specified: The following image formats are supported: JPEG, PNG, GIF, Animated GIF, WebP, Animated WebP, BMP, and WBMP. Additional formats may be s

api.flutter.dev

 

'Flutter' 카테고리의 다른 글

Positioned / Positioned.fill  (0) 2021.05.25
[Error] Vertical viewport was given unbounded height  (0) 2021.05.20
Provider 사용하기.  (0) 2021.05.08
WebView_flutter 플러그인  (0) 2021.05.03
Elevated button 모서리 둥글게  (0) 2021.04.16