mirror of
				https://github.com/kphanipavan/modal_progress_hud_nsn.git
				synced 2025-10-29 23:02:50 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			681 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			681 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| import Cocoa
 | |
| import FlutterMacOS
 | |
| 
 | |
| public class ModalProgressHudNsnPlugin: NSObject, FlutterPlugin {
 | |
|   public static func register(with registrar: FlutterPluginRegistrar) {
 | |
|     let channel = FlutterMethodChannel(name: "modal_progress_hud_nsn", binaryMessenger: registrar.messenger)
 | |
|     let instance = ModalProgressHudNsnPlugin()
 | |
|     registrar.addMethodCallDelegate(instance, channel: channel)
 | |
|   }
 | |
| 
 | |
|   public func handle(_ call: FlutterMethodCall, result: @escaping FlutterResult) {
 | |
|     switch call.method {
 | |
|     case "getPlatformVersion":
 | |
|       result("macOS " + ProcessInfo.processInfo.operatingSystemVersionString)
 | |
|     default:
 | |
|       result(FlutterMethodNotImplemented)
 | |
|     }
 | |
|   }
 | |
| }
 |