AnsaWalletScreen

fun AnsaWalletScreen(title: String = stringResource(Res.string.home_screen_title), ansaClient: <Error class: unknown class>, customerId: () -> String, merchantId: () -> String, onAddCard: () -> Unit? = null, onNavigateBack: () -> Unit? = null)

An "Ansa-managed" version of the Wallet Screen. Everything is handled via the provided AnsaClient.

Parameters

title

The title to display in the top bar (defaults to "Wallet")

ansaClient

The initialized AnsaClient

customerId

The unique identifier for the customer for this session

merchantId

The unique identifier for the merchant for this session

onAddCard

callback when a user initiates the "add card" flow within the screen. This provides a callback when the card was added successfully to allow Ansa to refresh the UI accordingly, and return the user to point when add card was triggered for a seamless UX.

onNavigateBack

When provided, this callback is used to navigate up/back, and thus, shows a back arrow at the top left. If not provided, the back arrow will be hidden.


fun AnsaWalletScreen(title: String = stringResource(Res.string.home_screen_title), isRefreshing: Boolean, isSandboxMode: Boolean = false, merchantCardArt: String? = null, balance: <Error class: unknown class> = Balance(0, LocalCurrencyFormatter.current.localCurrency()), transactions: List<<Error class: unknown class>> = emptyList(), autoReloadConfiguration: <Error class: unknown class>?, userReloadConfiguration: <Error class: unknown class>?, onRefresh: () -> Unit, onAddFunds: () -> Unit, onAutoReloadClicked: () -> Unit, onAddCard: () -> Unit? = null, onNavigateBack: () -> Unit? = null)

An "unmanaged" version of the Wallet Screen.

Parameters

title

The title to display in the top bar (defaults to "Wallet")

isRefreshing

Whether the screen is in a loading/refreshing state. This goes hand-in-hand with onRefresh.

isSandboxMode

If this wallet session is operating under "demo mode". If enabled, this will display a demo mode badge at the top of the screen.

merchantCardArt

Card art URL to be rendered/shown as a representation of the virtual card.

balance

User's current balance // * @param isCardInDeviceWallet If the virtual card is currently stored in the device's virtual wallet.

transactions

List of Transaction's to display

autoReloadConfiguration

The AutoReloadConfiguration currently enabled, if any.

userReloadConfiguration

The UserReloadConfiguration currently setup.

onRefresh

Callback when a user triggers a refresh event via pull-to-refresh.

onAddFunds

Callback when a user triggers/clicks 'Add Funds'

onAutoReloadClicked

Callback when a user triggers/clicks to view their Auto Reload Configuration.

onAddCard

callback when a user initiates the "add card" flow within the screen. This provides a callback when the card was added successfully to allow Ansa to refresh the UI accordingly, and return the user to point when add card was triggered for a seamless UX.

onNavigateBack

When provided, this callback is used to navigate up/back, and thus, shows a back arrow at the top left. If not provided, the back arrow will be hidden.