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 |
Tags
- listview
- Hello World
- Row
- sqlite
- Snackbar
- node.js
- FutureBuilder
- Row Widget
- Column Widget
- AppBar
- Image.network
- MainAxisAlignment
- ListTile
- HTTP
- navigator
- Scaffold
- CrossAxisAlignment
- Flutter 앱 배포
- ListView.builder
- Flutter Tutorial
- WillPopScope
- 반석천
- Load Image
- Networking
- Flutter 강좌
- Cached Image
- Flutter Example
- flutter
- InkWell
- Flutter 예제
Archives
- Today
- Total
목록Parse Json Data (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