this repo has no description

fix: adjust bottom navigation bar background color and simplify AddCommentButton widget usage

+2 -3
+2 -3
lib/screens/comments_page.dart
··· 183 ), 184 ), 185 bottomNavigationBar: Container( 186 child: SafeArea( 187 child: Padding( 188 padding: const EdgeInsets.only(top: 8, left: 16, right: 16, bottom: 8), 189 - child: AddCommentButton( 190 - onPressed: () => _showCommentInputSheet(context, ref), 191 - ), 192 ), 193 ), 194 ),
··· 183 ), 184 ), 185 bottomNavigationBar: Container( 186 + color: theme.scaffoldBackgroundColor, 187 child: SafeArea( 188 child: Padding( 189 padding: const EdgeInsets.only(top: 8, left: 16, right: 16, bottom: 8), 190 + child: AddCommentButton(onPressed: () => _showCommentInputSheet(context, ref)), 191 ), 192 ), 193 ),