반응형
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
- 내돈내산
- GetX
- AppleSilicon
- Git
- swift
- VSCode
- database
- 간단리뷰
- list
- datetime
- 춘식
- TextField
- Android
- xcode
- wrap
- listview
- M1
- 플러터
- ios
- 데스크셋업
- 라이언
- 카카오
- react
- GitHub
- Flutter
- error
- 데스크테리어
- AppBar
- visualstudiocode
- sqflite
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