Review Screen


UI customization


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 ) )

Â