gpt4 book ai didi

dart - GPS是否激活 - flutter

转载 作者:IT老高 更新时间:2023-10-28 12:42:24 31 4
gpt4 key购买 nike

有没有办法在 Flutter 中查明 GPS 是激活还是停用?我使用插件 location但是在那里我只得到位置而不是 GPS 的状态。

最佳答案

更新:(地理定位器 8.0.1)

bool isLocationEnabled = await Geolocator.isLocationServiceEnabled();

以前的解决方案:

接受的答案使用过时的插件,您可以使用Geolocator插件,

var geoLocator = Geolocator();
var status = await geoLocator.checkGeolocationPermissionStatus();

if (status == GeolocationStatus.denied)
// Take user to permission settings
else if (status == GeolocationStatus.disabled)
// Take user to location page
else if (status == GeolocationStatus.restricted)
// Restricted
else if (status == GeolocationStatus.unknown)
// Unknown
else if (status == GeolocationStatus.granted)
// Permission granted and location enabled

关于dart - GPS是否激活 - flutter ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51097428/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com