Flutter
[Flutter] 이미지 파일 (assets) 설정
noName123495
2020. 9. 14. 23:16
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");
반응형