flutter_device_type 0.3.0 flutter_device_type: ^0.3.0 copied to clipboard
Determine the type of handheld device on Flutter. Like if the device is a Tablet or is iPhoneX.
flutter_device_type #
Determine the type of handheld device on Flutter. Like if the device is a Tablet or is iPhoneX. This is a port of react-native-device-detection.
Usage #
//Get the physical device size
print( Device.size );
//Quick methods to access the physical device width and height
print("Device Width: ${Device.width}, Device Height: ${Device.height}");
//To get the actual screen size (Which is same as what MediaQuery gives)
print( Device.screenSize );
//Quick methods to access the screen width and height
print("Device Width: ${Device.screenWidth}, Device Height: ${Device.screenHeight}");
//Check if device is tablet
if( Device.get().isTablet ){
//do something large
}
//Check if device is iphone x
if( Device.get().isIphoneX ){
//Do some notch business
}
//Other utility methods
print( Device.get().isPhone );
print( Device.get().isAndroid );
print( Device.get().isIos );
//So to check for iPad for instance
if( Device.get().isIos && Device.get().isTablet ){
//make the font larger :)
}
Device.get()
will return only one instance so not need to save it except for brevity