반응형
Notice
Recent Posts
Recent Comments
Link
«   2024/10   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Archives
Today
Total
관리 메뉴

welcome to my blog

[Flutter] android AppBarTitle Center 정렬 본문

Flutter

[Flutter] android AppBarTitle Center 정렬

_annie_ 2021. 11. 10. 20:05
728x90

flutter로 개발할 때 안드로이드랑 ios랑 UI가 완전히 똑같이 작성되지않고 조금 다른 부분이 생긴다.

그 한가지 예로 AppBar이다

ios에서는 기본적으로 AppBar를 사용하면 중앙정렬이 되지만, 안드로이드에서는 왼쪽정렬이 default이다

그래서 android에서 중앙정렬로 해주려면 AppBar 속성의 centerTitle 속성을 true로 바꿔주면 된다.

 AppBar(
 	centerTitle: true,
    //...생략
 )

 

그럼 반대로 ios에서 Appbar 타이틀을 왼쪽에 놓고싶다면? centerTitle의 속성을 false로 해주면 된다.

 AppBar(
 	centerTitle: false,
    //...생략
 )

 

 

728x90
반응형