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 |
29 | 30 | 31 |
Tags
- listview
- ListTile
- Image.network
- Flutter 예제
- navigator
- sqlite
- Flutter Tutorial
- AppBar
- InkWell
- CrossAxisAlignment
- node.js
- Row Widget
- WillPopScope
- Row
- Networking
- MainAxisAlignment
- Flutter Example
- FutureBuilder
- Scaffold
- ListView.builder
- flutter
- Snackbar
- Flutter 강좌
- Flutter 앱 배포
- Hello World
- Cached Image
- Load Image
- Column Widget
- 반석천
- HTTP
Archives
- Today
- Total
목록Json Parsing (1)
꿈꾸는 시스템 디자이너
Flutter Example - Parse Json Data
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