Flutter分段控制器插件reactive_segmented_control的使用

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

Flutter分段控制器插件reactive_segmented_control的使用

reactive_segmented_control是一个用于Flutter的插件,它为CupertinoSegmentedControl提供了一个封装,使其可以与reactive_forms一起使用。下面将详细介绍如何使用这个插件,并提供一个完整的示例demo。

插件介绍

  • reactive_segmented_control是基于CupertinoSegmentedControl的一个封装。
  • 它主要用于与reactive_forms集成,简化表单处理逻辑。
  • 目前文档还在编写中,你可以参考example文件夹中的示例代码来了解其用法。

示例Demo

以下是一个完整的示例代码,展示了如何在你的Flutter应用中使用reactive_segmented_control

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // 创建表单组
  FormGroup buildForm() => fb.group({
        'input': FormControl<String>(value: 'a'), // 默认选中'a'
      });

  [@override](/user/override)
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: Scaffold(
        body: SafeArea(
          child: SingleChildScrollView(
            physics: const BouncingScrollPhysics(),
            padding: const EdgeInsets.symmetric(
              horizontal: 20.0,
              vertical: 20.0,
            ),
            child: ReactiveFormBuilder(
              form: buildForm, // 使用buildForm方法构建表单
              builder: (context, form, child) {
                return Column(
                  children: [
                    ReactiveSegmentedControl<String, String>(
                      decoration: const InputDecoration(
                        labelText: 'Rating', // 标签文本
                        border: OutlineInputBorder(), // 输入框边框样式
                        helperText: '', // 帮助文本(这里为空)
                      ),
                      padding: const EdgeInsets.all(0), // 内部填充
                      formControlName: 'input', // 关联到表单控件名
                      children: const { // 分段控件选项
                        'a': Text('A'),
                        'b': Text('B'),
                        'c': Text('C'),
                      },
                    ),
                    const SizedBox(height: 16), // 添加间距
                    ElevatedButton(
                      child: const Text('Sign Up'), // 按钮文本
                      onPressed: () {
                        if (form.valid) { // 如果表单验证通过
                          // 打印表单值
                          print(form.value);
                        } else {
                          // 标记所有字段为已触碰以触发验证提示
                          form.markAllAsTouched();
                        }
                      },
                    ),
                  ],
                );
              },
            ),
          ),
        ),
      ),
    );
  }
}

更多关于Flutter分段控制器插件reactive_segmented_control的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter分段控制器插件reactive_segmented_control的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


当然,以下是如何在Flutter项目中使用reactive_segmented_control插件的一个示例。这个插件允许你创建一个分段控制器(segmented control),用户可以在不同的选项之间进行切换。

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

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

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

接下来,在你的Dart文件中,你可以按照以下方式使用ReactiveSegmentedControl

import 'package:flutter/material.dart';
import 'package:reactive_segmented_control/reactive_segmented_control.dart';
import 'package:flutter_hooks/flutter_hooks.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Reactive Segmented Control Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends HookWidget {
  final List<String> options = ['Option 1', 'Option 2', 'Option 3'];

  @override
  Widget build(BuildContext context) {
    final selectedIndex = useState(0);

    return Scaffold(
      appBar: AppBar(
        title: Text('Reactive Segmented Control Demo'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            ReactiveSegmentedControl<int>(
              options: options.asMap().entries.map((e) => SegmentedControlOption<int>(
                value: e.key,
                title: Text(e.value),
              )).toList(),
              selectedValue: selectedIndex.value,
              onChanged: (value) {
                selectedIndex.value = value;
                // 你可以在这里添加其他逻辑,比如更新UI或者调用函数
                print('Selected index: $value');
              },
            ),
            SizedBox(height: 20),
            Text(
              'Selected: ${options[selectedIndex.value]}',
              style: TextStyle(fontSize: 24),
            ),
          ],
        ),
      ),
    );
  }
}

在这个示例中,我们做了以下几件事:

  1. 添加依赖:在pubspec.yaml文件中添加了reactive_segmented_control依赖。
  2. 创建UI:使用MaterialAppScaffold创建了一个基本的Flutter应用。
  3. 定义选项:定义了一个字符串列表options,它包含了分段控制器的选项。
  4. 使用useState Hook:使用flutter_hooks包中的useState Hook来管理选中的索引。
  5. 创建分段控制器:使用ReactiveSegmentedControl组件,将选项传递给它,并设置当前选中的值和更改回调。
  6. 显示选中的值:在分段控制器下方显示当前选中的值。

这样,当用户点击分段控制器中的不同选项时,selectedIndex的值会更新,同时界面上显示的文本也会相应变化。

请确保你已经在你的项目中添加了flutter_hooks依赖,因为它在这个示例中被用来管理状态。你可以在pubspec.yaml中添加以下依赖:

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

然后运行flutter pub get来安装它。

回到顶部