Flutter国际化电话号码输入插件ns_intl_phone_input的使用

发布于 1周前 作者 caililin 来自 Flutter

Flutter国际化电话号码输入插件ns_intl_phone_input的使用

《Flutter Phone Validation Package by Nonstop IO》

Pub codecov License: MIT

Flutter Phone Validation Package by Nonstop IO 是一个功能强大且易于使用的 Flutter 包,旨在验证来自超过200个国家的电话号码。通过该包,用户可以无缝地将电话号码验证集成到他们的 Flutter 应用程序中,从而增强用户体验并确保数据完整性。

屏幕截图

  • 包含国家代码和电话号码字段的小部件

  • 国家代码列表下拉菜单选项

  • 包含国家代码、电话号码字段及区号格式的小部件

功能

  • 国家选择下拉菜单:用户可以从下拉菜单中选择所需的国家代码,使验证不同地区的电话号码变得简单。

  • 全面验证:该包支持来自超过200个国家的电话号码验证,确保准确性和包容性。

  • 多种数字格式:用户可以以不同的格式输入电话号码,并且该包能够适应并验证这些格式。这包括对各种掩码和格式的支持。

  • 国家内的区号支持:该包提供了对国家内区号的支持。用户可以输入带区号的电话号码,并在验证时考虑这一点。此功能增强了该包的灵活性和适用于那些区号是电话号码重要组成部分的地区的能力。

入门指南

要将 Flutter Phone Validation Package 集成到您的项目中,请遵循以下简单步骤:

  1. pubspec.yaml 文件中添加该包:

    dependencies:
      ns_intl_phone_input: ^1.0.0
    
  2. 运行以下命令安装包:

    flutter pub get
    
  3. 在 Dart 文件中导入该包:

    import 'package:ns_intl_phone_input/ns_intl_phone_input.dart';
    
  4. 在您的 UI 中实现 NsIntlPhoneInput 小部件,并提供必要的回调和自定义选项:

    NsIntlPhoneInput(
      textEditingController: _phoneNumberController,
      enableValidation: false,
      onPhoneChange: (countrySelection) {
        setState(() {
          this.countrySelection = countrySelection;
        });
      },
      // 其他自定义选项...
    ),
    

使用说明

国家选择

该包提供了一个用户友好的国家选择下拉菜单,允许用户为电话号码验证选择相关的国家代码。

class SampleScreen extends StatefulWidget {
  const SampleScreen({super.key});

  @override
  State<SampleScreen> createState() => _SampleScreenState();
}

class _SampleScreenState extends State<SampleScreen> {
  // 初始化用于国际文本编辑的控制器
  final _phoneNumberController = IntlTextEditingController();

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: Text('NsIntlPhoneInput 示例',
              style: Theme.of(context).textTheme.titleLarge),
        ),
        body: Center(
          // 分配给 NsIntlPhoneInput 小部件
          child: NsIntlPhoneInput(
            textEditingController: _phoneNumberController,
            onPhoneChange: (countrySelection) {
              print(countrySelection);
            },
          ),
        ));
  }
}
初始化电话
_phoneNumberController.initialPhone(
  phoneNumber: '9876543210',
  intlDialCode: '91',
);
清除电话号码及其国家代码
_phoneNumberController.clear();

电话号码验证

通过 onPhoneChange 回调轻松验证电话号码。该包支持各种电话号码格式。

MaterialButton(
  onPressed: () {
    if (_formKey.currentState!.validate()) {
      print('有效电话号码');
    } else {
      print('无效电话号码');
    }
  },
  child: const Text('提交'),
),

自定义

您可以根据应用需求自定义该包的各种选项,如初始国家代码、格式化等。

NsIntlPhoneInput(
  // 电话号码控制器
  textEditingController: _phoneNumberController,

  // 启用或禁用验证
  enableValidation: false,
  autovalidateMode: AutovalidateMode.always,

  // 国家选择选项以提高用户体验
  countrySelectOption: const CountrySelectOption(
    countryDialCodeTextStyle: TextStyle(),
    countryIsoCodeTextStyle: TextStyle(),
    defaultText: "000",
    defaultTextStyle: TextStyle(),
    showCode: false,
  ),

  // 可选地选择国家选择作为对话框或新屏幕
  countrySelectionType: CountrySelectionTypeEnum.screen,
  focusNode: FocusNode(),
  phoneFieldDecoration: const InputDecoration(),
  phoneInputFontSize: 20,
  validationErrorText: "验证消息",
  onPhoneChange: (countrySelection) {
    setState(() {
      this.countrySelection = countrySelection;
    });
  },
),

更多关于Flutter国际化电话号码输入插件ns_intl_phone_input的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter国际化电话号码输入插件ns_intl_phone_input的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


当然,以下是如何在Flutter项目中使用ns_intl_phone_input插件来实现国际化电话号码输入的示例代码。这个插件可以帮助你轻松地集成一个国际化的电话号码输入字段。

1. 添加依赖

首先,在你的pubspec.yaml文件中添加ns_intl_phone_input依赖:

dependencies:
  flutter:
    sdk: flutter
  ns_intl_phone_input: ^x.y.z  # 请替换为最新版本号

然后运行flutter pub get来安装依赖。

2. 导入插件

在你的Dart文件中导入ns_intl_phone_input插件:

import 'package:ns_intl_phone_input/ns_intl_phone_input.dart';

3. 使用插件

下面是一个完整的示例,展示了如何在Flutter应用中使用ns_intl_phone_input插件:

import 'package:flutter/material.dart';
import 'package:ns_intl_phone_input/ns_intl_phone_input.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: Text('国际化电话号码输入示例'),
        ),
        body: Padding(
          padding: const EdgeInsets.all(16.0),
          child: PhoneInputScreen(),
        ),
      ),
    );
  }
}

class PhoneInputScreen extends StatefulWidget {
  @override
  _PhoneInputScreenState createState() => _PhoneInputScreenState();
}

class _PhoneInputScreenState extends State<PhoneInputScreen> {
  final phoneController = TextEditingController();
  late PhoneInput phoneInput;

  @override
  void initState() {
    super.initState();
    phoneInput = PhoneInput(
      controller: phoneController,
      focusNode: FocusNode(),
      initialCountry: 'us', // 初始国家代码
      enableLogging: true,  // 是否启用日志记录(调试用)
      nationalMode: false, // 是否只显示国家代码+本地号码
      preferredCountries: ['us', 'cn', 'in'], // 优先显示的国家列表
      selectorConfig: SelectorConfig(
        backgroundColor: Colors.white,
      ),
      textFieldConfig: TextFieldConfig(
        decoration: InputDecoration(
          border: OutlineInputBorder(),
          labelText: '输入电话号码',
        ),
      ),
      styles: PhoneInputStyle(
        textStyle: TextStyle(fontSize: 16),
        countryCodeTextStyle: TextStyle(fontSize: 14),
        selectedFlagTextStyle: TextStyle(fontSize: 16),
      ),
      onError: (error) {
        // 错误处理
        print('Error: $error');
      },
    );
  }

  @override
  void dispose() {
    phoneController.dispose();
    phoneInput.focusNode?.dispose();
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return Column(
      crossAxisAlignment: CrossAxisAlignment.start,
      children: <Widget>[
        phoneInput,
        SizedBox(height: 16),
        ElevatedButton(
          onPressed: () {
            final phoneNumber = phoneInput.getCompletePhoneNumber();
            if (phoneNumber != null) {
              // 处理电话号码
              print('完整电话号码: $phoneNumber');
            } else {
              print('输入无效');
            }
          },
          child: Text('获取完整电话号码'),
        ),
      ],
    );
  }
}

4. 运行应用

确保你的开发环境已经正确配置,然后运行你的Flutter应用。你将看到一个电话号码输入字段,可以选择国家并输入相应的电话号码。点击按钮后,你可以在控制台中看到完整的电话号码输出。

这个示例展示了如何使用ns_intl_phone_input插件来创建一个国际化电话号码输入字段,并获取用户输入的完整电话号码。你可以根据需求进一步自定义和扩展这个示例。

回到顶部