Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Flutter Tutorial
- Flutter 강좌
- Load Image
- Cached Image
- Networking
- navigator
- Column Widget
- InkWell
- WillPopScope
- ListTile
- listview
- Row Widget
- sqlite
- CrossAxisAlignment
- Image.network
- ListView.builder
- AppBar
- Flutter 예제
- node.js
- Hello World
- flutter
- FutureBuilder
- Row
- MainAxisAlignment
- Flutter 앱 배포
- Flutter Example
- HTTP
- Snackbar
- 반석천
- Scaffold
Archives
- Today
- Total
목록Expanded Widget (1)
꿈꾸는 시스템 디자이너
Flutter Example - Expanded Widget
import 'package:flutter/material.dart'; ExpandedWidgetState pageState; class ExpandedWidget extends StatefulWidget { @override ExpandedWidgetState createState() { pageState = ExpandedWidgetState(); return pageState; } } class ExpandedWidgetState extends State { List flexList = [1, 1, 1, 1, 1, 1]; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text("Expanded..
Tutorial/Flutter with App
2019. 9. 24. 16:03