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 |
Tags
- HTTP
- Flutter 예제
- 반석천
- node.js
- Networking
- sqlite
- navigator
- WillPopScope
- Column Widget
- Row Widget
- Scaffold
- listview
- flutter
- Load Image
- Row
- ListTile
- Flutter 강좌
- MainAxisAlignment
- Hello World
- ListView.builder
- InkWell
- AppBar
- Flutter Example
- Flutter Tutorial
- Image.network
- Snackbar
- FutureBuilder
- Cached Image
- CrossAxisAlignment
- Flutter 앱 배포
Archives
- Today
- Total
목록Json Parsing (1)
꿈꾸는 시스템 디자이너
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/lajSW/btqy33IYKhg/E0SU1rTVnB3JUMSngIYidk/img.gif)
import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; ParseJsonDemoState pageState; class Album { final int userId; final int id; final String title; Album({this.userId, this.id, this.title}); factory Album.fromJson(Map json) { return Album( userId: json['userId'] as int, id: json['id'] as int, title: json['title'] as String); } } class ParseJsonD..
Tutorial/Flutter with App
2019. 10. 14. 15:08