Molecules
Account Card
Displays account title and available balance inside a card, it also handles press event.
Account Number Row
Receives a card data object and handles the fetch and display of the extended information of that card like, the available balance and card image.
Balances Row
Displays two elements, each one with title, subtitle, and spacing between.
Compliance Checkboxes
Receives a compliance or legal documents array to display a checkbox component with the acknowledge text for each one, so the customer can accept that document.
Compliance Name Input
Receives compliance or legal documents array to display an input component with an acknowledge text for each one, so the customer needs to enter their name to accept that document.
Header With Button
Header With Menu
Modifies MainLayoutHeader component to leave Menu as default left icon for tab screens, and also handles the Drawer side menu's open and close actions.
Horizontal Action Button List
Transaction Item
Receives transaction information and displays a summary information per each transaction.
Request Money Sheet
Displays an Action Bottom Sheet with the account number and routing number of the primary account, and also gives the option to copy that information to the clipboard. It wraps the ActionBottomSheet component from the core module.
Transfer Info
Receive the information of the account that sends and receives a transfer
to
ItemTransferProps
Contains the information of the account that sends the transfer
from
ItemTransferProps
Contains the information of the account that receives the transfer
Item Transfer Info
Receives account information and displays a title, account type, and description
title
string
Receives a string that will be displayed as the account title
type
string(optional)
It is an optional parameter in which, ideally, the type of account would be displayed.
description
string(optional)
It is an optional parameter in which ideally to show the last four digits of the account
Item Section Header Recurrent Transfer
Element of information displayed in the preview of a scheduled transfer
title
string
Title that will be displayed in each section of the header of a scheduled transfer
subtitle
string
stylesTitle
Custom styles for the title of each section
stylesSubtitle
Custom styles for the subtitle of each section
Item Details Recurrent Transfer Upcoming
Component to display the information of a recurring transfer, it also contains buttons with the actions of deactivating or activating, deleting, editing and canceling
withFullInfo
boolean(optional)
When true is sent, it will show the information of the scheduled transfer, when false is sent, it will show the information of a transfer that will be executed in a certain time range
amount
string
This field will receive the amount for which a transfer was scheduled
memo
string
This field shows the memo defined by the user when scheduling a transfer
frequency
string(optional)
This field shows the memo defined by the user when scheduling a transfer
sendOn
string
This field will receive the day of the month in which the transfer will be executed
endOn
string(optional)
When there is a transfer end date
transferId
string
Receives the unique identifier of the transfer
recurrentTransferStatus
string
Receives the position in the array of scheduled transfers
indexInArray
number
Receives the position in the array of scheduled transfers
backgroundColor
string(optional)
Background color of the card of a scheduled transfer
onPressEdit
(itemTransfer: GetRecurrentTransferDetails)=>void(optional)
Event that works to edit the data of a transfer
onPressDelete
(itemTransfer: GetRecurrentTransferDetails)=>void(optional)
Event that to eliminate the transfers, receives the transfer id as a parameter
onPressActive
()=>void(optional)
Used to activate or deactivate a transfer
onPressCancel
(transferId: string)=>void(optional)
Event that is executed when a transfer is canceled receives the id of the transfer as a parameter
Item Empty List With Icon
When a user has not made any transfers, the empty component is displayed
title
string
empty state title
subtitle
string
A message or subtitle to display to the user
stylesTitle
Custom styles for the title of each section
stylesSubtitle
Custom styles for the subtitle of each section
Item Details Recurrent Transfer
accountName
string
Sending account name
accountTo
string
Number of the account that sends
accountNameTo
string
Receiving account name
accountFrom
string
Receiving account number
onPressActive
()=>void(optional)
Used to activate or deactivate a transfer
onPressDelete
(itemTransfer: GetRecurrentTransferDetails)=>void(optional)
Event that to eliminate the transfers, receives the transfer id as a parameter
onPressEdit
(itemTransfer: GetRecurrentTransferDetails)=>void(optional)
Event that works to edit the data of a transfer
accountStatus
string(optional)
Contains the possible statuses of a transfer: Active, Inactive, Cancelled, Ended
isActive
boolean
Boolean to determine the status of a transfer if it is true it is active if it is false it is inactive
endOn
string(optional)
This field will receive the day of the month in which the transfer will be executed
backgroundColor
string(optional)
Background color of the card of a scheduled transfer
Item Account General Info
accountTo
string
Number of the account that sends
accountFromName
string
Sending account name
accountFrom
string
Receiving account number
accountNameTo
string
Receiving account name
Filters Schedule Transfers Sheep
Modal that allows you to filter by status, frequency and amount
sheetRef
ref that allows to open or close the modal of the filters
onPressCancel
()=>void
Method that allows clearing the filters and closing the modal
onPressFilters
( filters: OptionsFilters, formatFilters: FormatFilters ) => void
Method that receives the selected filters in the modal
Delete Recurrent Transfer Sheet
sheetRef
ref that allows to open or close the modal of the filters
onPressDelete
(transferId?: string) => void
Method that allows to delete a transfer, receives as a parameter the id of the transfer to be deleted
subTitle
string(optional)
Subtitle modal
iconLeft
string(optional)
Icon Left
amount
string
Receive the amount of the transfer
memo
string
Receives the memo assigned to the transfer
frequency
string
Receives the frequency at which the transfer will be executed
accountName
string
Receives the name of the account that sent the transfer
Last updated
Was this helpful?