boxfit1 [BoxFit] 이미지 크기 조절 fit 옵션 BoxFit은 Flutter에서 이미지를 박스(컨테이너) 안에 배치할 때 이미지의 크기와 위치를 어떻게 조절할지 결정하는 데 사용 Container( width: double.infinity, height: 300, color: Colors.amber, child: Image( image: const AssetImage('asset/image/onb.jpg'), fit: BoxFit.contain, ),)BoxFit.fill이미지를 박스의 크기에 맞게 강제로 늘리거나 축소이미지 비율이 유지되지 않음 BoxFit.contain이미지의 비율을 유지하면서 박스 안에 완전히 맞춤박스와 이미지의 비율이 다르면 여백이 생김 BoxFit.cover이미지를 박스의 크기에 맞추되 박스를 완전히.. 2024. 10. 5. 이전 1 다음