Review Screen
Bottom navigation bar
You can inject your own view for the bottom navigation bar if you set GiniBank.setCaptureConfiguration(CaptureConfiguration(bottomNavigationBarEnabled = ))
to true
and pass a custom ReviewNavigationBarBottomAdapter
implementation to GiniBank
:
let customReviewNavigationBarBottomAdapter:ReviewNavigationBarBottomAdapter = CustomReviewNavigationBarBottomAdapter();
GiniBank.setCaptureConfiguration(
CaptureConfiguration(
reviewNavigationBarBottomAdapter = customReviewNavigationBarBottomAdapter
)
)
Custom Process button loading indicator
There is a default loading indicator on the Process button which shows that the upload is in progress. You can show your own activity indicator by implementing the OnButtonLoadingIndicatorAdapter
interface and passing it to GiniBank
:
let customOnButtonLoadingIndicatorAdapter:OnButtonLoadingIndicatorAdapter = CustomOnButtonLoadingIndicatorAdapter();
GiniBank.setCaptureConfiguration(
CaptureConfiguration(
onButtonLoadingIndicatorAdapter = customOnButtonLoadingIndicatorAdapter
)
)
UI customisation
You can also view the UI customisation guide in Figma here.
Â
Gini GmbH | Ridlerstr. 57 | 80339 München