Progress Dialog
BharatX SDK has a progress dialog that will be displayed through the user flow. If you want to show the progress dialog on your own at a particular time, you can uses these methods:
- Java
- Kotlin
- React Native
- Flutter
Your Android App
// show the progress dialogBharatXUiManager.displayBharatXProgressDialog(this);// close the progress dialogBharatXUiManager.closeBharatXProgressDialog();
Your Android App
// show the progress dialogBharatXUiManager.displayBharatXProgressDialog(this)// close the progress dialogBharatXUiManager.closeBharatXProgressDialog()
React Native App
import BharatXTransactionManager from '@bharatx/startup-sdk-reactnative';
// show the progress dialogBharatXTransactionManager.displayBharatXProgressDialog();// close the progress dialogBharatXTransactionManager.closeBharatXProgressDialog();
Flutter App
import 'package:startup_sdk_flutter/startup_sdk_flutter.dart';
// show the progress dialogBharatXTransactionManager.displayBharatXProgressDialog();// close the progress dialogBharatXTransactionManager.closeBharatXProgressDialog();