일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- listview
- HTTP
- Cached Image
- Column Widget
- Load Image
- navigator
- MainAxisAlignment
- Flutter Example
- FutureBuilder
- AppBar
- WillPopScope
- Row Widget
- Flutter 앱 배포
- Scaffold
- 반석천
- Flutter Tutorial
- Hello World
- CrossAxisAlignment
- Flutter 강좌
- sqlite
- flutter
- Row
- ListTile
- Image.network
- Flutter 예제
- Networking
- InkWell
- ListView.builder
- Snackbar
- node.js
- Today
- Total
목록MainAxisAlignment (2)
꿈꾸는 시스템 디자이너

import 'package:flutter/material.dart'; class ColumnWidgetAlignment extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text("Column Widget Alignment")), body: ListView( children: [ Text("* CrossAxisAlignment", style: TextStyle(fontWeight: FontWeight.bold)), Row( crossAxisAlignment: CrossAxisAlignment.end, children: [ Expanded( child: C..

import 'package:flutter/material.dart'; class RowWidgetMainAxisAlignment extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text("Row widget - MainAxisAlignment")), body: ListView( children: [ Text("Default (MainAxisAlignment.start)"), Container( child: Row( mainAxisAlignment: MainAxisAlignment.start, children: [ boxWidget(), boxWidget..