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

프로젝트명 우클릭 > asset 폴더 생성 생성한폴더(asset) 내부에 등록하고 싶은 이미지 파일 추가하기 pubspec.yaml 파일 내부에 해당 부분 주석 풀고 이미지 등록 이미지 사용 : Image.asset("asset/main.png")
Flutter
2021. 10. 16. 20:00

클래스 선언 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