Skip to content

Commit

Permalink
feat: Show default activity log ON #2926
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Oct 4, 2024
1 parent 0e03e03 commit 31fce45
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions lib/dashboard/drawer/src/view/drawer_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -169,18 +169,15 @@ class DrawerView extends StatelessWidget {
.push<void>(AboutAltmeMenu.route());
},
),
if (profileModel
.profileSetting.settingsMenu.displayActivityLog) ...[
DrawerCategoryItem(
title: l10n.activityLog,
subTitle: l10n.activityLogDescription,
onClick: () {
Navigator.of(context)
.push<void>(ActivityLogPage.route());
},
),
const SizedBox(height: Sizes.spaceSmall),
],
const SizedBox(height: Sizes.spaceSmall),
DrawerCategoryItem(
title: l10n.activityLog,
subTitle: l10n.activityLogDescription,
onClick: () {
Navigator.of(context)
.push<void>(ActivityLogPage.route());
},
),
const SizedBox(height: Sizes.spaceSmall),
DrawerCategoryItem(
title: l10n.resetWallet,
Expand Down

0 comments on commit 31fce45

Please sign in to comment.