■ Text 클래스의 textAlign 속성을 사용해 수평 정렬하는 방법을 보여준다.
▶ 예제 코드 (DART)
1 2 3 4 5 6 |
Text( 'hello\nFlutter', textAlign: TextAlign.center, ) |
■ Text 클래스의 textAlign 속성을 사용해 수평 정렬하는 방법을 보여준다.
▶ 예제 코드 (DART)
1 2 3 4 5 6 |
Text( 'hello\nFlutter', textAlign: TextAlign.center, ) |