DEV/flutter (dart)

Flutter Row 위젯 예시 with mainAxisAlignment

석봉 2023. 1. 31. 14:57
// 여러 위젯 가로 배치 (아마 배열 앞에 const 사용해야 할 것!)
Row(
  // mainAxisAlignment 메인 축 내부 요소 정렬
  // (start, center, end, spaceEvenly 등등 다양한 옵션 사용가능)
  mainAxisAlignment: MainAxisAlignment.end,
  children: const [
    위젯...,
    위젯...,
  ]
)