Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Added Missing default values for IvyFeatures
Browse files Browse the repository at this point in the history
  • Loading branch information
shamim-emon committed Oct 20, 2024
1 parent 70eb664 commit 4d18a32
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,24 @@ class IvyFeatures @Inject constructor() : Features {
key = "sort_categories_ascending",
group = FeatureGroup.Category,
name = "Sort categories list",
description = "Show categories in ascending order (A-Z) on the transaction entry screen"
description = "Show categories in ascending order (A-Z) on the transaction entry screen",
defaultValue = false
)

override val compactAccountsMode = BoolFeature(
key = "compact_account_ui",
group = FeatureGroup.Account,
name = "Compact account cards",
description = "Make the Accounts tab UI more compact and dense"
description = "Make the Accounts tab UI more compact and dense",
defaultValue = false
)

override val compactCategoriesMode = BoolFeature(
key = "compact_category_ui",
group = FeatureGroup.Category,
name = "Compact category cards",
description = "Simplified design of the Categories screen"
description = "Simplified design of the Categories screen",
defaultValue = false
)

override val showTitleSuggestions = BoolFeature(
Expand Down

0 comments on commit 4d18a32

Please sign in to comment.