mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 12:03:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			231 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			231 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'dart:io';
 | 
						|
import 'package:flutter/foundation.dart';
 | 
						|
 | 
						|
extension PlatformExtension on Platform {
 | 
						|
  static bool get isMobile {
 | 
						|
    if (kIsWeb) {
 | 
						|
      return false;
 | 
						|
    }
 | 
						|
    return Platform.isAndroid || Platform.isIOS;
 | 
						|
  }
 | 
						|
}
 |