일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Row Widget
- InkWell
- Hello World
- AppBar
- Scaffold
- Snackbar
- Flutter 앱 배포
- 반석천
- sqlite
- Flutter 강좌
- HTTP
- listview
- Load Image
- Row
- FutureBuilder
- CrossAxisAlignment
- Image.network
- navigator
- ListTile
- Column Widget
- WillPopScope
- flutter
- Cached Image
- Flutter Example
- ListView.builder
- Flutter 예제
- node.js
- MainAxisAlignment
- Networking
- Flutter Tutorial
- Today
- Total
목록CrossAxisAlignment (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 RowWidgetCrossAxisAlignment extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text("Row widget - CrossAxisAlignment")), body: ListView( children: [ Text("default (CrossAxisAlignment.center)"), Container( decoration: BoxDecoration( color: Colors.grey[200], border: Border.all(color: Colors.i..