Accounts
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.
This class contains all the parameters that are used to customize the Accounts screen.
Parameters
grouping
The GroupingMode that is used to group the accounts. By default it uses the NoGrouping mode.
filtering
The FilteringMode that is used to filter the accounts to be shown on the accounts screen. By default it uses the FilterAll mode.
account
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
            )
        ))
Content copied to clipboard