WalletViewInterface.swift 443 Bytes
//
//  WalletViewInterface.swift
//  WarplySDKFrameworkIOS
//
//  Created by Βασιλης Σκουρας on 20/4/22.
//

import Foundation
import SwiftUI

@available(iOS 13.0.0, *)
@objc public class WalletViewInterface : NSObject {

    @objc(walletViewController:) static public func walletViewController(parentView: UIView?) -> UIViewController {
        return UIHostingController(rootView: WalletView(parentView: parentView!))
    }

}