diff --git a/lib/ui/widgets/first_screen/credit_card_mini.dart b/lib/ui/widgets/first_screen/credit_card_mini.dart index 9ef92aabcfa46e47b1d54b6cf10cc8ff55b77870..7f583fdea3211e4d306d5e8f84cbab174aa6b822 100644 --- a/lib/ui/widgets/first_screen/credit_card_mini.dart +++ b/lib/ui/widgets/first_screen/credit_card_mini.dart @@ -86,28 +86,27 @@ class CreditCardMini extends StatelessWidget { child: Padding( padding: const EdgeInsets.all(10), child: Stack(children: <Widget>[ - if (inDevelopment) - if (!SharedPreferencesHelper().isG1nkgoCard()) - Positioned( - top: 60, - right: 0, - child: Visibility( - visible: settingsVisible, - child: FloatingActionButton( - backgroundColor: Colors.transparent, - elevation: 1, - onPressed: () { - SharedPreferencesHelper() - .selectCurrentWalletIndex(0); - SharedPreferencesHelper() - .removeCesiumCard(cardIndex); - Navigator.pop(context); - }, - child: - const Icon(Icons.delete, color: Colors.white), - ), + if (!SharedPreferencesHelper().isG1nkgoCard()) + Positioned( + top: 60, + right: 0, + child: Visibility( + visible: settingsVisible, + child: FloatingActionButton( + backgroundColor: Colors.transparent, + elevation: 1, + onPressed: () { + SharedPreferencesHelper() + .selectCurrentWalletIndex(0); + SharedPreferencesHelper() + .removeCesiumCard(cardIndex); + Navigator.pop(context); + }, + child: + const Icon(Icons.delete, color: Colors.white), ), ), + ), Positioned( top: 0, right: 0,