* Refact. Build flutter web Signed-off-by: fufesou <shuanglongchen@yeah.net> * Refact. Flutter web, wrap Platform.xx Signed-off-by: fufesou <shuanglongchen@yeah.net> --------- Signed-off-by: fufesou <shuanglongchen@yeah.net>
		
			
				
	
	
		
			15 lines
		
	
	
		
			299 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			299 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| abstract class NativeHandler {
 | |
|   bool onEvent(Map<String, dynamic> evt);
 | |
| }
 | |
| 
 | |
| class NativeUiHandler extends NativeHandler {
 | |
|   NativeUiHandler._();
 | |
| 
 | |
|   static NativeUiHandler instance = NativeUiHandler._();
 | |
| 
 | |
|   @override
 | |
|   bool onEvent(Map<String, dynamic> evt) {
 | |
|       throw UnimplementedError();
 | |
|   }
 | |
| }
 |