[Flutter] 컨테이너 maxHeight, maxWidth 정하기 및 위젯 사이즈 구하기

Hee Tae Shin·2023년 3월 14일
1

Flutter

목록 보기
10/16

컨테이너 맥스 height, width 정하기

ConstrainedBox(
	constraints: BoxConstraints(
    minHeight: 100,
    minWidth: 100,
    ),
)

위젯 사이즈 구하기

  final GlobalKey _containerKey = GlobalKey();  
  
Size? _getSize() {
      if (_containerKey.currentContext != null) {
        final RenderBox renderBox =
            _containerKey.currentContext!.findRenderObject() as RenderBox;
        Size size = renderBox.size;
        return size;
      }
      return null;
    }
profile
안녕하세요

0개의 댓글