Widget build(BuildContext context) {
return Scaffold(
appBar: navigationBar(widget.groupChannel),
body: body(context),
);
}
Widget navigationBar(GroupChannel channel) {
return AppBar(
automaticallyImplyLeading: true,
backgroundColor: Colors.white,
centerTitle: false,
위와 같은 코드에서 navigationBar에서 PreferredSizedWidget 과 관련된 오류 발생.
@override
Widget build(BuildContext context) {
return Scaffold(
// backgroundColor: Colors.white,
appBar: navigationBar(),
body: body(context),
);
}
PreferredSize navigationBar() {
return PreferredSize(
preferredSize: const Size.fromHeight(100),
child: AppBar(
automaticallyImplyLeading: true,
backgroundColor: Colors.white,
PreferredSize 위젯을 사용하여 height size를 주면 문제 해결.
'개발일지 > Flutter' 카테고리의 다른 글
Error: unable to find git in your PATH. (0) | 2023.04.28 |
---|---|
Flutter Study 1일차 - 기본 Widget 1 (0) | 2023.04.20 |
Flutter -Visual Studio CODE - develop for Windows (the doctor check crashed) ERROR (0) | 2023.04.19 |