@@ -42,7 +42,6 @@ class _BookRecommendationContentState extends State<BookRecommendationContent>
4242 void initState () {
4343 super .initState ();
4444
45- // 검색창 입력이 바뀔 때마다 setState() 호출해서 버튼 상태 업데이트
4645 _searchController.addListener (() {
4746 setState (() {});
4847 });
@@ -81,21 +80,6 @@ class _BookRecommendationContentState extends State<BookRecommendationContent>
8180 buildBookSearchTab (),
8281 ],
8382 ),
84- bottomNavigationBar: BottomAppBar (
85- color: const Color (0xFFFDFCE5 ),
86- child: Padding (
87- padding: const EdgeInsets .symmetric (horizontal: 32.0 , vertical: 10 ),
88- child: Row (
89- mainAxisAlignment: MainAxisAlignment .spaceAround,
90- children: const [
91- Icon (Icons .home, size: 28 ),
92- Icon (Icons .search, size: 28 ),
93- Icon (Icons .bookmark, size: 28 ),
94- Icon (Icons .settings, size: 28 ),
95- ],
96- ),
97- ),
98- ),
9983 ),
10084 );
10185 }
@@ -147,6 +131,7 @@ class _BookRecommendationContentState extends State<BookRecommendationContent>
147131 style: TextStyle (fontSize: 18 , color: Colors .white)),
148132 ),
149133 ),
134+ const SizedBox (height: 80 ),
150135 ],
151136 ),
152137 );
@@ -188,6 +173,7 @@ class _BookRecommendationContentState extends State<BookRecommendationContent>
188173 style: TextStyle (fontSize: 18 , color: Colors .white)),
189174 ),
190175 ),
176+ const SizedBox (height: 80 ),
191177 ],
192178 ),
193179 );
0 commit comments