Skip to content

Commit

Permalink
feat(btcard): alterado a cor de fundo do head e footer em BTCard
Browse files Browse the repository at this point in the history
  • Loading branch information
vitoramaral10 committed Nov 23, 2022
1 parent 38f4e6e commit 0bb6df7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/components/bt_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class BTCard extends StatelessWidget {
padding: headPadding ?? const EdgeInsets.all(8.0),
width: double.infinity,
decoration: BoxDecoration(
color: headBackground ?? const Color(0xFFF7F7F7),
color: headBackground ?? BTColors.white,
borderRadius: const BorderRadius.only(
topLeft: Radius.circular(6),
topRight: Radius.circular(6),
Expand Down Expand Up @@ -79,7 +79,7 @@ class BTCard extends StatelessWidget {
padding: footerPadding ?? const EdgeInsets.all(8.0),
width: double.infinity,
decoration: BoxDecoration(
color: footerBackground ?? const Color(0xFFF7F7F7),
color: footerBackground ?? BTColors.white,
borderRadius: const BorderRadius.only(
bottomLeft: Radius.circular(6),
bottomRight: Radius.circular(6),
Expand Down

0 comments on commit 0bb6df7

Please sign in to comment.