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 183 ), 184 184 ), 185 185 bottomNavigationBar: Container( 186 + color: theme.scaffoldBackgroundColor, 186 187 child: SafeArea( 187 188 child: Padding( 188 189 padding: const EdgeInsets.only(top: 8, left: 16, right: 16, bottom: 8), 189 - child: AddCommentButton( 190 - onPressed: () => _showCommentInputSheet(context, ref), 191 - ), 190 + child: AddCommentButton(onPressed: () => _showCommentInputSheet(context, ref)), 192 191 ), 193 192 ), 194 193 ),