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

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