Skip to content

Commit 7fe4ee4

Browse files
committed
Bug: Fix missing coin detail buttons in wallet-only mode
1 parent 9f46ca5 commit 7fe4ee4

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

lib/views/wallet/coin_details/coin_details_info/coin_details_common_buttons.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class CoinDetailsCommonButtons extends StatelessWidget {
2424
final bool isMobile;
2525
final Coin coin;
2626
final void Function(CoinPageType) selectWidget;
27-
final VoidCallback clickSwapButton;
27+
final VoidCallback? clickSwapButton;
2828

2929
@override
3030
Widget build(BuildContext context) {
@@ -163,7 +163,7 @@ class CoinDetailsCommonButtonsDesktopLayout extends StatelessWidget {
163163
context: context,
164164
),
165165
),
166-
if (!coin.walletOnly)
166+
if (!coin.walletOnly && !kIsWalletOnly)
167167
Container(
168168
margin: const EdgeInsets.only(left: 21),
169169
constraints: const BoxConstraints(maxWidth: 120),

lib/views/wallet/coin_details/coin_details_info/coin_details_info.dart

+10-9
Original file line numberDiff line numberDiff line change
@@ -260,16 +260,17 @@ class _DesktopCoinDetails extends StatelessWidget {
260260
),
261261
],
262262
),
263-
if (MainMenuValue.dex.isEnabledInCurrentMode())
264-
Padding(
265-
padding: const EdgeInsets.fromLTRB(2, 28.0, 0, 0),
266-
child: CoinDetailsCommonButtons(
267-
isMobile: false,
268-
selectWidget: setPageType,
269-
clickSwapButton: () => _goToSwap(context, coin),
270-
coin: coin,
271-
),
263+
Padding(
264+
padding: const EdgeInsets.fromLTRB(2, 28.0, 0, 0),
265+
child: CoinDetailsCommonButtons(
266+
isMobile: false,
267+
selectWidget: setPageType,
268+
clickSwapButton: MainMenuValue.dex.isEnabledInCurrentMode()
269+
? null
270+
: () => _goToSwap(context, coin),
271+
coin: coin,
272272
),
273+
),
273274
const Gap(16),
274275
if (areChartsSupported)
275276
Card(

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
1515
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1616
# Read more about iOS versioning at
1717
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18-
version: 0.8.2+0
18+
version: 0.8.2+1
1919

2020
environment:
2121
sdk: ">=3.4.0 <4.0.0" # The recent 3.5.0 breaks the build. We will resolve this after this release.

0 commit comments

Comments
 (0)