Flutter中的设备国家/地区

时间:2019-09-17 15:05:05

标签: flutter country-codes

我正在尝试在Flutter中获取设备国家(Android)。遵循有关this link的教程,我正在使用(我认为这是解决我的问题的错误方法)

Locale myLocale = Localizations.localeOf(context);
print(myLocale.languageCode.toString() + ' ' + myLocale.countryCode.toString());

基于此,我有几个问题/问题。

  • 即使我将设备语言设置为“乌尔都语-巴基斯坦”,我也总是得到en US。那我想念什么?
  • 我想显示基于国家/地区,设备位于而不是基于语言的某些应用程序项目,因为居住在巴基斯坦且将语言设置为英语(美国)的人们将获得实际上面向美国用户的项目。因此,我应该使用geoLocation并获取经度和纬度并根据该数据进行决策吗?还是有其他更简单的方法来获取用户所在国家/地区?

感谢期待。

9 个答案:

答案 0 :(得分:7)

Method Mockery_4_GuzzleHttp_Psr7_Response::getStatusCode() does not exist on this mock object

中添加这2个库
pubspec.yaml

然后添加geolocator: ^5.1.1 geocoder: ^0.2.1 访问权限。选中here

最后在所需的位置调用此方法。

Location

答案 1 :(得分:2)

尝试

mytibble$newfield <- sapply(mytibble$ndoc, FND)

答案 2 :(得分:1)

如果您希望在不使用“ geolocator”的情况下获取设备的国家/地区,因此无需获得设备的许可,则可以使用以下代码:

  Future<String> getCountry() async{
  Network n = new Network("http://ip-api.com/json");
  locationSTR = (await n.getData());
  locationx = jsonDecode(locationSTR);
  return locationx["country"];
}

网络类代码如下:

import 'dart:convert';
import 'dart:io';

import 'package:http/http.dart' as http;

class Network {
  final String url;

  Network(this.url);

  Future<String> apiRequest(Map jsonMap) async {
    HttpClient httpClient = new HttpClient();
    HttpClientRequest request = await httpClient.postUrl(Uri.parse(url));
    request.headers.set('content-type', 'application/x-www-form-urlencoded');
    request.add(utf8.encode(json.encode(jsonMap)));
    HttpClientResponse response = await request.close();
    // todo - you should check the response.statusCode
    String reply = await response.transform(utf8.decoder).join();
    httpClient.close();
    return reply;
  }

  Future<String> sendData(Map data) async {
    http.Response response = await http.post(url,
        headers: {'Content-Type': 'application/json; charset=UTF-8'},
        body: jsonEncode(data));
    if (response.statusCode == 200)
      return (response.body);
    else
      return 'No Data';
  }

  Future<String> getData() async {
    http.Response response = await http.post(url,
        headers: {'Content-Type': 'application/x-www-form-urlencoded'});
    if (response.statusCode == 200)
      return (response.body);
    else
      return 'No Data';
  }
}

您还可以获得城市和国家/地区代码以及互联网提供商。

答案 3 :(得分:0)

请使用软件包https://pub.dev/packages/devicelocale
我已经在真实设备上进行了测试,它可以正常运行

代码段

String locale = await Devicelocale.currentLocale;

完整代码

import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:devicelocale/devicelocale.dart';

void main() => runApp(MyApp());

/// Demo getting a device locale
class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  List _languages = List();
  String _locale;

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    List languages;
    String currentLocale;

    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      languages = await Devicelocale.preferredLanguages;
      print(languages);
    } on PlatformException {
      print("Error obtaining preferred languages");
    }
    try {
      currentLocale = await Devicelocale.currentLocale;
      print(currentLocale);
    } on PlatformException {
      print("Error obtaining current locale");
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _languages = languages;
      _locale = currentLocale;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Column(
            children: <Widget>[
              Text("Current locale: "),
              Text('$_locale'),
              Text("Preferred Languages: "),
              Text(_languages.toString()),

            ],
          )
        ),
      ),
    );
  }
}

答案 4 :(得分:0)

使用flutter_sim_country_code,通过此软件包,您可以直接从用户sim和网络提供商获取用户本地化变量和国家/地区代码。例如;

networkCountryIso,
simCountryIso,

这些变量始终包含国家代码

答案 5 :(得分:0)

在使用具有特定国家/地区功能的应用程序时,我遇到了同样的问题。这里提到的所有这些方法都是很好的,我自己经历了所有这些方法,但我意识到没有一种方法可以涵盖所有可能的情况。

因此,我改变了解决问题的方法。与其以编程方式做出决定,不如使用哪个国家/地区的用户。我认为最好使用最适合您的应用的一种方法来识别用户所在的国家/地区,然后将其呈现给用户。如果他们希望可以更改它,否则在大多数情况下,自动检测是有效的。

对于我的应用程序,我在登录时向用户提供了国家/地区,并在底部提供了一个扁平按钮,如果不正确的话可以进行更改。

答案 6 :(得分:0)

此解决方案需要启用位置服务。
在 pubspec.yaml 文件中添加这两个依赖项

地理定位器:^7.0.3 地理编码:^2.0.0

Future<String> getCountryCodeName() async {
Position position = await Geolocator.getCurrentPosition(
    desiredAccuracy: LocationAccuracy.high);
List<Placemark> address =
    await placemarkFromCoordinates(position.latitude, position.longitude);
Placemark placeMark = address.first;
String country = placeMark.country;
return country; // this will return country }

答案 7 :(得分:-1)

尝试一下。不要忘记在android manifest和ios中提供必要的权限。

import 'package:geolocator/geolocator.dart';
final Geolocator geolocator = Geolocator()..forceAndroidLocationManager;

geolocator
    .getCurrentPosition(desiredAccuracy: LocationAccuracy.best)
    .then((Position position) {
  setState(() {
    _currentPosition = position;
  });
}).catchError((e) {
  print(e);
});

答案 8 :(得分:-1)

基于@chunhunghan的答案,您可以使用插件https://pub.dev/packages/devicelocale。要获取国家/地区代码,您必须使用:

Locale l = await Devicelocale.currentAsLocale;
String countryCode = l.countryCode;

有关完整代码,请检查:https://pub.dev/packages/devicelocale#-example-tab-