반응형
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
- swift
- Android
- 데스크셋업
- AppleSilicon
- 춘식
- sqflite
- GitHub
- 카카오
- 데스크테리어
- GetX
- Flutter
- visualstudiocode
- 라이언
- M1
- xcode
- database
- error
- wrap
- AppBar
- Git
- react
- 내돈내산
- datetime
- list
- listview
- VSCode
- TextField
- ios
- 플러터
- 간단리뷰
Archives
- Today
- Total
목록APP (1)
welcome to my blog
클래스 선언 class Source { final String? id; final String? name; Source({required this.id, required this.name}); factory Source.fromJson(Map json) { print(json); return Source( id : json['id'], name : json['name'] ); } } class Article { final Source? source; final String? title; final String? urlToImage; final String? publishedAt; Article({required this.source, required this.title, required this.urlT..
Flutter
2021. 10. 15. 20:00