diff --git a/lib/src/screens/cake_pay/cards/cake_pay_cards_page.dart b/lib/src/screens/cake_pay/cards/cake_pay_cards_page.dart index f7e7c553d..eb9893a40 100644 --- a/lib/src/screens/cake_pay/cards/cake_pay_cards_page.dart +++ b/lib/src/screens/cake_pay/cards/cake_pay_cards_page.dart @@ -99,7 +99,7 @@ class CakePayCardsPage extends BasePage { decoration: BoxDecoration( color: Theme.of(context).extension()!.syncedBackgroundColor, border: Border.all( - color: Colors.white.withOpacity(0.2), + color: Colors.transparent, ), borderRadius: BorderRadius.circular(10), ), @@ -123,7 +123,7 @@ class CakePayCardsPage extends BasePage { padding: EdgeInsets.symmetric(horizontal: 6), decoration: BoxDecoration( color: Theme.of(context).extension()!.syncedBackgroundColor, - border: Border.all(color: Colors.white.withOpacity(0.2)), + border: Border.all(color: Colors.transparent), borderRadius: BorderRadius.circular(10), ), child: Container( @@ -167,9 +167,9 @@ class CakePayCardsPage extends BasePage { controller: _searchController, focusNode: searchFocusNode, )), - SizedBox(width: 10), + SizedBox(width: 5), filterButton, - SizedBox(width: 10), + SizedBox(width: 5), _countryPicker ])), SizedBox(height: 8), @@ -369,15 +369,9 @@ class _SearchWidget extends StatelessWidget { alignLabelWithHint: true, floatingLabelBehavior: FloatingLabelBehavior.never, suffixIcon: searchIcon, - border: OutlineInputBorder( - borderSide: BorderSide( - color: Colors.white.withOpacity(0.2), - ), - borderRadius: BorderRadius.circular(10), - ), enabledBorder: OutlineInputBorder( borderSide: BorderSide( - color: Colors.white.withOpacity(0.2), + color: Colors.transparent, ), borderRadius: BorderRadius.circular(10), ), diff --git a/lib/src/screens/cake_pay/widgets/card_item.dart b/lib/src/screens/cake_pay/widgets/card_item.dart index ce804adc2..1234c0a1f 100644 --- a/lib/src/screens/cake_pay/widgets/card_item.dart +++ b/lib/src/screens/cake_pay/widgets/card_item.dart @@ -9,7 +9,7 @@ class CardItem extends StatelessWidget { required this.backgroundColor, required this.titleColor, required this.subtitleColor, - this.hideBorder = false, + this.hideBorder = true, this.discount = 0.0, this.isAmount = false, this.discountBackground,