일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- ListTile
- Column Widget
- flutter
- 반석천
- Scaffold
- ListView.builder
- InkWell
- MainAxisAlignment
- Flutter 강좌
- node.js
- Row Widget
- Row
- Flutter 앱 배포
- Load Image
- Flutter 예제
- sqlite
- FutureBuilder
- Hello World
- Networking
- WillPopScope
- Flutter Example
- HTTP
- CrossAxisAlignment
- AppBar
- Image.network
- listview
- Flutter Tutorial
- navigator
- Cached Image
- Snackbar
- Today
- Total
목록Flutter Tutorial (45)
꿈꾸는 시스템 디자이너
import 'package:flutter/material.dart'; class RowWidgetBasic extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text("Basic Row Widget")), // insert a Row widget in body body: Row( children: [ // Add three sub-widget in the Row widget boxWidget(), boxWidget(), boxWidget(), ], ), ); } boxWidget() { return Container( height: 50, width: 5..
import 'package:flutter/material.dart'; class CenterWidget extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text("Center Widget Demo")), body: Center( child: Text("This text is center aligned through the center widget."), ), ); } } ▶ Go to Table of Contents | 강의 목차로 이동 ※ This example is also available in the Flutter Code Examples app..
import 'package:flutter/material.dart'; class ScaffoldPage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text("This is my AppBar")), body: Text("This body has one Text widget"), ); } } ▶ Go to Table of Contents | 강의 목차로 이동 ※ This example is also available in the Flutter Code Examples app. | 본 예제는 Flutter Code Examples 앱에서도 제공됩니다. ..
import 'package:flutter/material.dart'; class HelloWorld extends StatefulWidget { @override HelloWorldState createState() => HelloWorldState(); } class HelloWorldState extends State { @override Widget build(BuildContext context) { return Center( child: Text("Hello World"), ); } } ▶ Go to Table of Contents | 강의 목차로 이동 ※ This example is also available in the Flutter Code Examples app. | 본 예제는 Flut..
강좌 목록 2019/07/22 - [Development/Flutter] - Flutter 강좌2 - Hello World 2019/07/22 - [Development/Flutter] - Flutter 강좌2 - 소스코드(위젯) 분할 2019/07/25 - [Development/Flutter] - Flutter 강좌2 - 가변 인자 사용법 | @required와 assert 사용법 2019/08/09 - [Development/Flutter] - Flutter 강좌2 - 스낵바(SnackBar)를 출력하는 다양한 방법 2019/08/12 - [Development/Flutter] - Flutter 강좌2 - 자식 State에서 부모 State를 참조하는 방법 | Global State 사용법 2019..