0.16.0
- You can now have a separate theme for the budgets feature. This theme will be used in all screens opened from the budget flow. To set this use the
featureSpecificThemes
parameter when creating yourFinanceOverviewFragment
. If used it's recommended that this theme inherit from your global theme, either way it will have to inherit fromTinkFinanceOverviewStyle
.
FinanceOverviewFragment.newInstance(
...
featureSpecificThemes = mapOf(
MoneyManagerFeatureType.BUDGETS to R.style.Budget_Style,
)
- Colors for charts in budgets has been updated to be consistent with iOS. This alignment means that the colors used in graphs are now
tink_expensesColor
,tink_expensesLightColor
andtink_warningColor
. Please review your charts in budgets and if necessary change your colors by setting a color specific theme for budgets.