This repository was archived by the owner on Nov 5, 2024. It is now read-only.
File tree 1 file changed +6
-3
lines changed
shared/domain/src/main/java/com/ivy/domain/features
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -10,21 +10,24 @@ class IvyFeatures @Inject constructor() : Features {
10
10
key = " sort_categories_ascending" ,
11
11
group = FeatureGroup .Category ,
12
12
name = " Sort categories list" ,
13
- description = " Show categories in ascending order (A-Z) on the transaction entry screen"
13
+ description = " Show categories in ascending order (A-Z) on the transaction entry screen" ,
14
+ defaultValue = false
14
15
)
15
16
16
17
override val compactAccountsMode = BoolFeature (
17
18
key = " compact_account_ui" ,
18
19
group = FeatureGroup .Account ,
19
20
name = " Compact account cards" ,
20
- description = " Make the Accounts tab UI more compact and dense"
21
+ description = " Make the Accounts tab UI more compact and dense" ,
22
+ defaultValue = false
21
23
)
22
24
23
25
override val compactCategoriesMode = BoolFeature (
24
26
key = " compact_category_ui" ,
25
27
group = FeatureGroup .Category ,
26
28
name = " Compact category cards" ,
27
- description = " Simplified design of the Categories screen"
29
+ description = " Simplified design of the Categories screen" ,
30
+ defaultValue = false
28
31
)
29
32
30
33
override val showTitleSuggestions = BoolFeature (
You can’t perform that action at this time.
0 commit comments