Accounts

data class Accounts(    val groupingMode: GroupingMode = NoGrouping,     val filteringMode: FilteringMode = FilterAll,     val accountEditConfiguration: AccountEditConfiguration = AccountEditConfiguration( listOf( EditAccountField.NAME, EditAccountField.KIND ) )) : EntryPoint, Parcelable

Entrypoint for the Accounts screen.

This class contains all the parameters that are used to customize the Accounts screen.

Parameters

groupingMode

The GroupingMode that is used to group the accounts. By default it uses the NoGrouping mode.

filteringMode

The FilteringMode that is used to filter the accounts to be shown on the accounts screen. By default it uses the FilterAll mode.

accountEditConfiguration

The AccountEditConfiguration that defines the user-editable fields for the accounts. By default only the EditAccountField.NAME and EditAccountField.KIND are editable.

Constructors

Link copied to clipboard
fun Accounts(    groupingMode: GroupingMode = NoGrouping,     filteringMode: FilteringMode = FilterAll,     accountEditConfiguration: AccountEditConfiguration = AccountEditConfiguration( listOf( EditAccountField.NAME, EditAccountField.KIND ) ))

Properties

Link copied to clipboard
val accountEditConfiguration: AccountEditConfiguration
Link copied to clipboard
val filteringMode: FilteringMode
Link copied to clipboard
val groupingMode: GroupingMode