Flutter电话号码表单插件reactive_phone_form_field的使用

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

Flutter电话号码表单插件reactive_phone_form_field的使用

reactive_phone_form_field是一个围绕phone_form_field的包装插件,用于与reactive_forms一起使用。该插件提供了便捷的方法来处理电话号码输入,并且支持多种语言本地化。

以下是如何在Flutter应用中使用reactive_phone_form_field的完整示例demo。

示例代码

import 'package:flutter/material.dart';
import 'package:reactive_forms/reactive_forms.dart';
import 'package:reactive_phone_form_field/reactive_phone_form_field.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  FormGroup buildForm() => fb.group({
        'input': FormControl<PhoneNumber>(
          value: const PhoneNumber(
            isoCode: IsoCode.UA, // 设置初始国家代码为乌克兰
            nsn: '933456789',    // 设置初始电话号码
          ),
          validators: [
            // PhoneValidators.required, // 可选:添加必填验证器
            // PhoneValidators.valid,    // 可选:添加格式验证器
          ],
        ),
      });

  [@override](/user/override)
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      localizationsDelegates: [
        ...PhoneFieldLocalization.delegates, // 添加本地化代理
      ],
      supportedLocales: const [
        Locale('en', ''),
        Locale('es', ''),
        Locale('fr', ''),
        Locale('ru', ''),
        Locale('uz', ''),
        Locale('uk', ''),
        Locale('ar', ''),
      ],
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      builder: (context, child) {
        return ReactiveFormConfig(
          validationMessages: {
            // 配置全局或每个控件的验证消息
            ...PhoneValidationMessage.localizedValidationMessages(context),
          },
          child: child!,
        );
      },
      home: Scaffold(
        appBar: AppBar(title: const Text('Phone Number Form')),
        body: SafeArea(
          child: SingleChildScrollView(
            physics: const BouncingScrollPhysics(),
            padding: const EdgeInsets.symmetric(
              horizontal: 20.0,
              vertical: 20.0,
            ),
            child: ReactiveFormBuilder(
              form: buildForm,
              builder: (context, form, child) {
                return Column(
                  children: [
                    ReactivePhoneFormField<PhoneNumber>(
                      formControlName: 'input',
                      focusNode: FocusNode(),
                      valueAccessor: PhoneNumberValueAccessor(),
                      // validationMessages: {
                      //   ...PhoneValidationMessage.localizedValidationMessages(
                      //     context,
                      //   ),
                      // },
                    ),
                    const SizedBox(height: 16),
                    ElevatedButton(
                      child: const Text('Sign Up'),
                      onPressed: () {
                        if (form.valid) {
                          // 打印表单值
                          print(form.value);
                        } else {
                          form.markAllAsTouched(); // 标记所有控件为已触碰状态
                        }
                      },
                    ),
                  ],
                );
              },
            ),
          ),
        ),
      ),
    );
  }
}

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

1 回复

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


当然,下面是一个关于如何在Flutter项目中使用reactive_phone_form_field插件的示例代码。这个插件主要用于创建带有国际电话格式验证的电话号码表单字段。

首先,确保你已经在pubspec.yaml文件中添加了reactive_phone_form_field依赖:

dependencies:
  flutter:
    sdk: flutter
  reactive_phone_form_field: ^最新版本号  # 请替换为实际的最新版本号

然后,运行flutter pub get来获取依赖。

接下来,在你的Flutter项目中,你可以使用ReactivePhoneFormField来创建一个电话号码表单字段。以下是一个完整的示例,展示了如何在一个简单的Flutter应用中集成和使用这个插件:

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Phone Form Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: PhoneFormScreen(),
    );
  }
}

class PhoneFormScreen extends StatefulWidget {
  @override
  _PhoneFormScreenState createState() => _PhoneFormScreenState();
}

class _PhoneFormScreenState extends State<PhoneFormScreen> {
  final _formKey = GlobalKey<FormState>();
  var _phoneController = TextEditingController();

  @override
  void dispose() {
    _phoneController.dispose();
    super.dispose();
  }

  void _submitForm() {
    if (_formKey.currentState!.validate()) {
      _formKey.currentState!.save();
      print("Phone Number: ${_phoneController.text}");
      // 在这里处理表单提交,例如发送到服务器
    }
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Phone Form Example'),
      ),
      body: Padding(
        padding: const EdgeInsets.all(16.0),
        child: Form(
          key: _formKey,
          child: Column(
            crossAxisAlignment: CrossAxisAlignment.start,
            children: <Widget>[
              ReactivePhoneFormField(
                controller: _phoneController,
                labelText: 'Phone Number',
                validator: (value) {
                  if (value == null || value.isEmpty) {
                    return 'Phone number is required';
                  }
                  return null;
                },
                onSaved: (value) {
                  // 保存电话号码,可以在这里做进一步处理
                },
                decoration: InputDecoration(
                  border: OutlineInputBorder(),
                ),
              ),
              SizedBox(height: 20),
              ElevatedButton(
                onPressed: _submitForm,
                child: Text('Submit'),
              ),
            ],
          ),
        ),
      ),
    );
  }
}

在这个示例中,我们创建了一个简单的Flutter应用,其中包含一个电话号码表单字段。我们使用ReactivePhoneFormField来创建这个字段,并为其配置了控制器(TextEditingController)、标签文本(labelText)、验证器(validator)和保存回调(onSaved)。

  • controller:用于管理电话号码输入框的文本。
  • labelText:输入框的标签文本。
  • validator:用于验证输入的电话号码是否为空。
  • onSaved:当表单提交并验证通过时,保存电话号码。

当用户点击“Submit”按钮时,会触发_submitForm函数,该函数会验证表单并打印出电话号码(如果验证通过)。

请注意,reactive_phone_form_field插件还提供了许多其他配置选项,如自定义国家选择器、初始化国家代码等,你可以根据需求进行进一步配置。

回到顶部