Flutter JSON数据输入插件json_text_field的使用

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

Flutter JSON数据输入插件json_text_field的使用

插件介绍

json_text_field 是一个用于在 TextField 中直接编辑 JSON 文件的综合包。它与 Flutter 完美集成,提供丰富的自定义 JSON 操作体验。

主要功能

  • 动态 JSON 值高亮:通过可定制的文本样式轻松区分 JSON 元素,如键、字符串、数字、布尔值、null 值和特殊字符。
  • 验证和错误显示:实时验证 JSON 字符串,快速修复错误。
  • 直观的 JSON 格式化:自动格式化 JSON 字符串以提高可读性,支持排序和自定义控制器。
  • 无缝集成:易于集成到现有 Flutter 项目中,无需额外的平台特定配置。

开始使用

添加插件

json_text_field 添加为依赖项,添加到 pubspec.yaml 文件中。详情请参阅 Flutter 的插件指南。

dependencies:
  json_text_field: ^1.0.0
导入插件
import 'package:json_text_field/json_text_field.dart';

基本用法

替换标准的 TextFieldJsonTextField 以启用 JSON 编辑能力。

const JsonTextField(),

可定制特性

JsonTextField 延续了熟悉的 TextField 界面,增加了独特的属性以实现个性化的 JSON 编辑体验:

  • 自定义高亮样式

    • keyHighlightStyle: 键的样式。
    • stringHighlightStyle: 字符串值的样式。
    • numberHighlightStyle: 数字值的样式。
    • booleanHighlightStyle: 布尔值的样式。
    • nullHighlightStyle: null 值的样式。
    • specialCharacterHighlightStyle: 特殊字符的样式。
  • 自定义错误样式

    • errorTextStyle: 错误文本的样式。
    • errorContainerDecoration: 错误容器的装饰。
  • 格式化和排序

    • isFormatting: 启用或禁用 JSON 字符串格式化。
    • showErrorMessage: 显示或隐藏错误消息。

控制器使用

JsonTextField 使用 JsonTextFieldController,这是一个增强版的 TextEditingController,带有额外的 JSON 格式化方法。

final JsonTextFieldController controller = JsonTextFieldController();

Column(
    children: [
        JsonTextField(
            controller: controller,
            isFormatting: true,
            showErrorMessage: false,
        ),
        ElevatedButton(
            onPressed: () => controller.formatJson(sortJson: true),
            child: const Text('Format Json (sort)'),
        ),
    ],
)

示例代码

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

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  final controller = JsonTextFieldController();
  bool isFormating = true;

  // 这个 widget 是应用程序的根。
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        debugShowCheckedModeBanner: false,
        title: 'Flutter Demo',
        theme: ThemeData(
          colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
          useMaterial3: true,
        ),
        home: Scaffold(
          appBar: AppBar(
              title: const Center(child: Text('JSON Text Field Example'))),
          body: Center(
            child: Column(
              children: [
                const SizedBox(height: 50),
                SizedBox(
                  width: 300,
                  height: 300,
                  child: JsonTextField(
                    onError: (error) => debugPrint(error),
                    showErrorMessage: true,
                    controller: controller,
                    isFormatting: isFormating,
                    keyboardType: TextInputType.multiline,
                    expands: true,
                    maxLines: null,
                    textAlignVertical: TextAlignVertical.top,
                    onChanged: (value) {},
                    decoration: InputDecoration(
                      hintText: "Enter JSON",
                      hintStyle: TextStyle(
                        color:
                            Theme.of(context).colorScheme.outline.withOpacity(
                                  0.6,
                                ),
                      ),
                      focusedBorder: OutlineInputBorder(
                        borderRadius:
                            const BorderRadius.all(Radius.circular(8)),
                        borderSide: BorderSide(
                          color:
                              Theme.of(context).colorScheme.primary.withOpacity(
                                    0.6,
                                  ),
                        ),
                      ),
                      enabledBorder: OutlineInputBorder(
                        borderRadius:
                            const BorderRadius.all(Radius.circular(8)),
                        borderSide: BorderSide(
                          color: Theme.of(context).colorScheme.surfaceVariant,
                        ),
                      ),
                      filled: true,
                    ),
                  ),
                ),
                ElevatedButton(
                    onPressed: () => controller.formatJson(sortJson: false),
                    child: const Text('Format JSON')),
                ElevatedButton(
                    onPressed: () => controller.formatJson(sortJson: true),
                    child: const Text('Format JSON (sort)')),
                Row(
                  mainAxisSize: MainAxisSize.min,
                  children: [
                    const Text('Format as JSON'),
                    Switch(
                        value: isFormating,
                        onChanged: (value) =>
                            setState(() => isFormating = value)),
                  ],
                ),
              ],
            ),
          ),
        ));
  }
}

示例代码链接

完整的示例可以在 GitHub 上找到:

https://github.com/antonioCaballero17/json_text_field/blob/main/example/lib/main.dart


更多关于Flutter JSON数据输入插件json_text_field的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter JSON数据输入插件json_text_field的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


当然,下面是一个关于如何在Flutter中使用json_text_field插件来处理JSON数据输入的示例代码。这个插件允许用户以JSON格式输入数据,并实时验证其正确性。

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

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

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

接下来,是一个完整的Flutter应用示例,展示了如何使用json_text_field

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

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

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

class MyHomePage extends StatefulWidget {
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  final JsonController _jsonController = JsonController();
  String _jsonErrorText = '';

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('JSON Text Field Demo'),
      ),
      body: Padding(
        padding: const EdgeInsets.all(16.0),
        child: Column(
          crossAxisAlignment: CrossAxisAlignment.start,
          children: <Widget>[
            Text('Enter JSON data:', style: TextStyle(fontSize: 18)),
            SizedBox(height: 16),
            JsonTextField(
              controller: _jsonController,
              decoration: InputDecoration(
                border: OutlineInputBorder(),
                labelText: 'JSON',
              ),
              onChanged: (jsonString, isValid) {
                setState(() {
                  _jsonErrorText = isValid ? '' : 'Invalid JSON';
                });
              },
            ),
            SizedBox(height: 16),
            Text(
              _jsonErrorText,
              style: TextStyle(color: Colors.red, fontSize: 14),
            ),
            SizedBox(height: 16),
            ElevatedButton(
              onPressed: () {
                // 获取解析后的 JSON 数据(Map 或 List 类型)
                dynamic jsonData = _jsonController.data;
                print(jsonData);

                // 这里你可以对 jsonData 进行进一步处理,比如保存到数据库或发送到服务器
              },
              child: Text('Get JSON Data'),
            ),
          ],
        ),
      ),
    );
  }
}

解释

  1. 依赖导入:在pubspec.yaml文件中添加json_text_field依赖。
  2. JsonController:创建一个JsonController实例来管理JSON输入。
  3. JsonTextField:使用JsonTextField小部件来接受用户输入的JSON数据。
  4. 实时验证:通过onChanged回调,实时检查输入的JSON字符串是否有效,并更新错误文本。
  5. 获取数据:点击按钮时,从JsonController实例中获取解析后的JSON数据(Map或List类型),并可以进行进一步处理。

这个示例展示了如何使用json_text_field插件来接受、验证和处理用户输入的JSON数据。你可以根据实际需求对代码进行扩展和修改。

回到顶部