[Flutter] AppBar title 가운데 정렬

kimdocs...📄·2023년 12월 1일
0

flutter

목록 보기
25/30

Widget build(BuildContext context) {
  return AppBar(
    title: title != null
        ? Text(
            title!,
            style: CGTextStyle.subtitle1.copyWith(color: CGColor.text_1st),
          )
        : null,
    centerTitle: true, // 타이틀을 가운데로 정렬합니다.
    leading: leading,
    actions: actions,
    backgroundColor: Colors.transparent,
    bottomOpacity: 0.0,
    elevation: 0.0,
    scrolledUnderElevation: 0,
  );
}
profile
👩‍🌾 GitHub: ezidayzi / 📂 Contact: ezidayzi@gmail.com

0개의 댓글