9Cells

Center

Center는 자식 위젯을 가로나 세로로 정렬할 수 있습니다.

예제

Scaffold 안에 Center를 넣은 예제
Scaffold(
  appBar: AppBar(
    title: Text('타이틀'),
  ),
  body: Center(
    child: Text('중앙 텍스트'),
  ),
),