dlcodns / OSP_Prediction

GNU General Public License v2.0
1 stars 2 forks source link

flex 내에 이미지 넣는 방법 #39

Closed dlcodns closed 1 year ago

dlcodns commented 1 year ago

flex 177:490:177로 삼분할 해놨고 첫번째 상자 안에 피팅룸 이미지 넣으려 했으나 제대로 되지 않습니다.

flex가 제대로 먹히지 않습니다..

dlcodns commented 1 year ago
Expanded(
              flex: 177,
              child: Align(
                alignment: Alignment(0.0,0.5),
                child: Image.asset(
                  '2_Fitting_Room.png',
                  width: MediaQuery.of(context).size.width * 0.4,
                  fit: BoxFit.contain,  // 이미지 비율 유지
                ),
              ),
            ),
dlcodns commented 1 year ago

해결했습니다!