Keep loader

By default, Yuno will stop the loading after processing transaction operations. You can make it persist via YunoConfig by setting keepLoader: true.

Yuno.initialize(
    apiKey: apiKey,
    config: YunoConfig(keepLoader: true)
)

This will make the loader persist until you call either of the following functions (this only applies to payment flow):

Yuno.hideLoader()

or

Yuno.continuePayment(showPaymentStatus: Bool)