We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40b61ab commit de9b265Copy full SHA for de9b265
lib/views/widgets/drawer_elements.dart
@@ -50,11 +50,12 @@ class DrawerElements extends StatelessWidget {
50
text: L.security_and_backup,
51
action: _securityBackup,
52
),
53
- DrawerElement(
54
- svg: Assets.drawerIcons.exportKeyImages.svg(),
55
- text: L.export_key_images,
56
- action: _exportKeyImages,
57
- ),
+ if (coinWallet is MoneroWallet)
+ DrawerElement(
+ svg: Assets.drawerIcons.exportKeyImages.svg(),
+ text: L.export_key_images,
+ action: _exportKeyImages,
58
+ ),
59
DrawerElement(
60
svg: Assets.drawerIcons.otherSettings.svg(),
61
text: L.other_settings,
0 commit comments