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