Entry Point
Types
Link copied to clipboard
data class Accounts( val groupingMode: GroupingMode = NoGrouping, val filteringMode: FilteringMode = FilterAll, val accountEditConfiguration: AccountEditConfiguration = AccountEditConfiguration(
listOf(
EditAccountField.NAME,
EditAccountField.KIND
)
)) : EntryPoint, Parcelable
Content copied to clipboard
Entrypoint for the Accounts screen.
Link copied to clipboard
data class ActionableInsights(val insightActionHandler: InsightActionHandler? = null, val showArchiveButton: Boolean = true) : EntryPoint
Content copied to clipboard
Entrypoint for the Actionable Insights screen.
Link copied to clipboard
Entrypoint for the Budgets screen.
Link copied to clipboard
data class Overview( val overviewFeatures: OverviewFeatures = OverviewFeatures.ALL, val toolbarVisible: Boolean = false, val featureSpecificThemes: Map<MoneyManagerFeatureType, Int> = emptyMap(), val insightActionHandler: InsightActionHandler? = null, val fragmentViewCreatedListener: OnFragmentViewCreatedListener? = null) : EntryPoint
Content copied to clipboard
Entrypoint for the Finance Overview screen.
Link copied to clipboard
Entrypoint for the Dynamic Budgets screen.
Link copied to clipboard
Entrypoint for the Recurring Expenses screen.
Link copied to clipboard
Entrypoint for the Statistics screen.
Link copied to clipboard
Entrypoint for the Subscription screen.
Link copied to clipboard
data class Transactions( val title: String, val accounts: List<String>? = emptyList(), val categories: List<String>? = emptyList(), val dateInterval: DateInterval? = null, val query: String? = null, val includeUpcoming: Boolean = false, val sort: SearchQuery.SortEnum? = SearchQuery.SortEnum.DATE, val order: SearchQuery.OrderEnum? = SearchQuery.OrderEnum.DESC, val limit: Int? = null) : EntryPoint, Parcelable
Content copied to clipboard
Entrypoint for the Transactions screen.