ldpi | 0.75x |
mdpi | 1.0x |
hdpi | 1.5x |
xhdpi | 2.0x |
xxhdpi | 3.0x |
xxxhdpi | 4.0x |
image 폴더 설정
images/my_icon.png // Base: 1.0x image
images/2.0x/my_icon.png // 2.0x image
images/3.0x/my_icon.png // 3.0x image
pubspec.yaml 파일에 추가
assets: - images/my_icon.png
소스에 사용
Image.asset("images/my_image.png");
반응형
'Flutter' 카테고리의 다른 글
[Flutter] Admob 연동하기 (0) | 2020.09.18 |
---|---|
[Flutter] Widget 테두리 설정 (border) (0) | 2020.09.17 |
[Flutter] String 내에 특정 값을 포함하고 있는지 알고 싶을 때 (0) | 2020.08.25 |
[Flutter] String to Int /double (0) | 2020.08.25 |
[Flutter] TextField & TextFormField (0) | 2020.08.25 |