Last updated 1 year ago
Was this helpful?
Component that lists address suggestion according to what is written on the input.
onAddressDetails
( addressDetail: GooglePlaceDetail | GooglePlaceData, ) => void
Handler called when writing the address so the suggestions appear to select one
onError
() => void (optional)
Function called when an error occurs
<AddressSuggestionInput onAddressDetails={onAddressDetails} onError={onError} />
Component used to indicate which part of an onboarding process the user is currently on.
activeColor
string
Color to display as the active indicator
inactiveColor
Color to display as the inactive indicator
activeIndex
number
Index for the active indicator
count
Count of the onboarding process
<Indicator count={indicatorsLength} activeColor={theme.color.action.tertiary[400]} inactiveColor={theme.color.action.tertiary[100]} activeIndex={currentScreen} />