我实际上是想弄清楚该应用程序是在我的flutter应用程序中是在智能手机还是平板电脑上运行,但包装device_info
只能显示有关设备的信息,而不能告知该设备是智能手机还是平板电脑。有没有一种方法可以通过检查设备的大小来做到这一点。
非常感谢Mahi
// The equivalent of the "smallestWidth" qualifier on Android. var shortestSide = MediaQuery.of(context).size.shortestSide; // Determine if we should use mobile layout or not, 600 here is // a common breakpoint for a typical 7-inch tablet. final bool useMobileLayout = shortestSide < 600;
复制自https://flutter.rocks/2018/01/28/implementing-adaptive-master-detail-layouts/
谢谢@Sergi