Skip to end of banner
Go to start of banner

Review Screen

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Next »


Bottom navigation bar

You can inject your own view for the bottom navigation bar if you set GiniConfiguration.shared.bottomNavigationBarEnabled to true and pass a custom ReviewScreenBottomNavigationBarAdapter implementation to GiniConfiguration.shared.reviewNavigationBarBottomAdapter:

let customReviewScreenBottomNavigationBarAdapter = CustomReviewScreenBottomNavigationBarAdapter()

GiniConfiguration.shared.reviewNavigationBarBottomAdapter = customReviewScreenBottomNavigationBarAdapter

Custom Process button loading indicator

There is a default loading indicator on the Process button that shows that the upload is in progress. You can show your own loading indicator by implementing the OnButtonLoadingIndicatorAdapter interface and passing it to GiniConfiguration:

let customOnButtonLoadingIndicatorAdapter = CustomOnButtonLoadingIndicatorAdapter()

GiniConfiguration.shared.onButtonLoadingIndicator = customOnButtonLoadingIndicatorAdapter

The example implementation is available here.

UI customisation


  • No labels