일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Cached Image
- Row Widget
- Flutter 앱 배포
- Column Widget
- CrossAxisAlignment
- Flutter 예제
- HTTP
- MainAxisAlignment
- ListView.builder
- ListTile
- Scaffold
- Flutter Tutorial
- flutter
- 반석천
- Load Image
- FutureBuilder
- node.js
- Image.network
- navigator
- Row
- Flutter 강좌
- InkWell
- Hello World
- AppBar
- listview
- Snackbar
- sqlite
- WillPopScope
- Networking
- Flutter Example
- Today
- Total
목록navigator (3)
꿈꾸는 시스템 디자이너
import 'package:flutter/material.dart'; class NaviGetData extends StatelessWidget { final scaffoldKey = GlobalKey(); @override Widget build(BuildContext context) { return Scaffold( key: scaffoldKey, appBar: AppBar(title: Text("First Screen")), body: Center( child: RaisedButton( child: Text("Launch Screen"), onPressed: () { receiveData(context); }, ), ), ); } receiveData(BuildContext context) asy..
import 'package:flutter/material.dart'; class NaviSendData extends StatelessWidget { List fruits = ["Apples", "Oranges", "Bananas"]; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text("First Screen")), body: ListView.builder( itemCount: fruits.length, itemBuilder: (context, index) { return Card( child: ListTile( title: Text("${fruits[index]}"), onTap: () {..
import 'package:flutter/material.dart'; // First Screen class NaviFirstScreen extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text("First Screen")), body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Container( height: 70, width: 250, decoration: BoxDecoration(color: Colors.orange), alignment: Alig..