Here, you can read about the customization of the no results screen.
UI customization
Bottom navigation bar
Will be available in 3.0.0-beta05.
You can inject your own view for the bottom navigation bar if you set GiniBank.setCaptureConfiguration(CaptureConfiguration(bottomNavigationBarEnabled = ))
to true
and pass a custom NoResultsNavigationBarBottomAdapter
implementation to GiniBank
:
let customNoResultsNavigationBarBottomAdapter:NoResultsNavigationBarBottomAdapter = CustomNoResultsNavigationBarBottomAdapter(); GiniBank.setCaptureConfiguration( CaptureConfiguration( noResultsNavigationBarBottomAdapter = customNoResultsNavigationBarBottomAdapter ) )