일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- flutter
- Load Image
- Row Widget
- Hello World
- FutureBuilder
- Column Widget
- Row
- Snackbar
- Flutter 강좌
- Flutter 앱 배포
- MainAxisAlignment
- Image.network
- HTTP
- AppBar
- InkWell
- Flutter 예제
- listview
- WillPopScope
- Scaffold
- Flutter Example
- Flutter Tutorial
- Networking
- node.js
- navigator
- Cached Image
- sqlite
- ListTile
- 반석천
- ListView.builder
- CrossAxisAlignment
- 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..