본문 바로가기

Flutter

[Flutter] 플러터 Placeholder (자리표시자) 엑스박스

Placeholder : 자리표시자

플러터에서 router 로 미리 지정된 파일서 어느 영역에서 얼만큼 크기를 차지할 지 임시로 표시해주는 박스

 

const Placeholder(),

const Placeholder(
  fallbackHeight: 50,
  fallbackWidth: 200,

이런식으로 박스에 크기도 변경해서 지정해 줄 수 있다.

 

class Placeholder extends StatelessWidget {
  /// Creates a widget which draws a box.
  const Placeholder({
    super.key,
    this.color = const Color(0xFF455A64), // Blue Grey 700
    this.strokeWidth = 2.0,
    this.fallbackWidth = 400.0,
    this.fallbackHeight = 400.0,
    this.child
  });