Flutter文本选择容器插件selectable_container的使用

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

Flutter文本选择容器插件selectable_container的使用

Flutter中,selectable_container 插件提供了一个可选中的容器组件,它易于实现和自定义。下面将详细介绍其用法,并提供完整的示例代码。

Demo

使用方法

要使用此插件,只需导入包 import 'package:selectable_container/selectable_container.dart';

示例代码

以下是几个不同场景下 SelectableContainer 的使用例子:

简单的例子

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

class SimpleExamplePage extends StatefulWidget {
  @override
  _SimpleExamplePageState createState() => _SimpleExamplePageState();
}

class _SimpleExamplePageState extends State<SimpleExamplePage> {
  bool _selected = false;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Selectable Container'),
      ),
      body: Column(
        children: <Widget>[
          Text(
            'Default container',
            style: TextStyle(fontSize: 22, fontWeight: FontWeight.bold),
          ),
          SelectableContainer(
            selected: _selected,
            onValueChanged: (newValue) {
              setState(() {
                _selected = newValue;
              });
            },
            child: Text('Tap me'),
            padding: 16.0,
          ),
        ],
      ),
    );
  }
}

更多功能的示例

以下是一个更复杂的例子,展示了更多可用的属性和功能:

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Selectable Container Example',
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key}) : super(key: key);

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  bool _select1 = false;
  bool _select2 = false;
  bool _select3 = false;

  @override
  Widget build(BuildContext context) {
    var textStyles = Theme.of(context).textTheme;

    return Scaffold(
      backgroundColor: Colors.red,
      appBar: AppBar(
        title: const Text('Selectable Container Example'),
      ),
      body: Column(
        mainAxisAlignment: MainAxisAlignment.start,
        children: [
          Align(
            alignment: Alignment.bottomCenter,
            child: SelectableContainer(
              onValueChanged: (newValue) {
                setState(() {
                  _select1 = newValue;
                });
              },
              marginColor: Colors.transparent,
              selected: _select1,
              padding: 8.0,
              child: buildTextContentOfContainer(
                  'Selectable Container', 'Default theme colors', textStyles),
            ),
          ),
          const SizedBox(height: 16.0),
          SelectableContainer(
            selectedBorderColor: Colors.teal.shade700,
            selectedBackgroundColor: Colors.grey.shade100,
            unselectedBorderColor: Colors.teal.shade600,
            unselectedBackgroundColor: Colors.grey.shade200,
            iconAlignment: Alignment.topLeft,
            icon: Icons.thumb_up,
            unselectedIcon: Icons.add_box,
            marginColor: Colors.transparent,
            elevation: 0,
            iconSize: 24,
            unselectedOpacity: 1,
            selectedOpacity: 0.8,
            selected: _select2,
            padding: 8.0,
            child: buildTextContentOfContainer('Custom color',
                'Icon, size, position en opacitiy changed', textStyles),
            onValueChanged: (newValue) {
              setState(() {
                _select2 = newValue;
              });
            },
          ),
          const SizedBox(height: 16.0),
          SelectableContainer(
            iconSize: 20,
            icon: Icons.star,
            iconColor: Colors.yellowAccent,
            marginColor: Colors.transparent,
            unselectedOpacity: 0.3,
            opacityAnimationDuration: 300,
            elevation: 4.0,
            selected: _select3,
            padding: 16.0,
            onValueChanged: (newValue) {
              setState(() {
                _select3 = newValue;
              });
            },
            child: buildDemoContent3(),
          ),
          const SizedBox(height: 16.0),
          //const Expanded(child: SelectableContainerGrid()), // If you have a grid implementation
        ],
      ),
    );
  }

  Widget buildTextContentOfContainer(
      String title, String subtitle, TextTheme textStyles) {
    return Column(
      mainAxisSize: MainAxisSize.min,
      crossAxisAlignment: CrossAxisAlignment.center,
      children: <Widget>[
        Text(
          title,
          style: textStyles.headline5,
        ),
        Text(
          subtitle,
          style: textStyles.bodyText1,
        ),
      ],
    );
  }

  Widget buildDemoContent3() {
    return Column(
      children: <Widget>[
        Row(
          mainAxisSize: MainAxisSize.min,
          children: <Widget>[
            const CircleAvatar(
              backgroundImage: AssetImage('images/flutter.png'),
              radius: 25.0,
            ),
            const SizedBox(
              width: 8.0,
            ),
            Text(
              'Develop with Flutter',
              style: TextStyle(
                  fontWeight: FontWeight.w500,
                  fontSize: 20.0,
                  color: Colors.blue.shade700),
            ),
          ],
        )
      ],
    );
  }
}

这个例子展示了如何使用 SelectableContainer 创建一个带有不同样式、图标和动画效果的选择容器。你可以根据需要调整这些属性以适应你的应用设计。


更多关于Flutter文本选择容器插件selectable_container的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter文本选择容器插件selectable_container的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


当然,下面是一个关于如何在Flutter中使用selectable_container插件来实现文本选择容器的示例代码。selectable_container允许你在Flutter应用中创建一个可以选择文本的容器,这在需要用户复制或选择文本内容的情况下非常有用。

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

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

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

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

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

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

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

class MyHomePage extends StatelessWidget {
  final String textContent = "这是一个可以选择的文本内容。用户可以长按并拖动来选择他们想要复制的文本部分。";

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Selectable Container Demo'),
      ),
      body: Padding(
        padding: const EdgeInsets.all(16.0),
        child: SelectableContainer(
          child: Text(
            textContent,
            style: TextStyle(fontSize: 18),
          ),
          // 可选参数,用于自定义选择文本的样式
          selectionColor: Colors.lightBlue.withOpacity(0.5),
          handleColor: Colors.blue,
          // 可选参数,用于处理文本选择事件
          onTextSelectionChanged: (start, end) {
            print("Selected text range: $start - $end");
          },
        ),
      ),
    );
  }
}

代码解释

  1. 依赖导入

    import 'package:selectable_container/selectable_container.dart';
    
  2. 构建应用

    • MyApp 是应用的根组件,它使用 MaterialApp 包装了 MyHomePage
    • MyHomePage 是包含 SelectableContainer 的页面。
  3. 文本内容

    • textContent 变量包含了需要显示的文本。
  4. SelectableContainer 使用

    • child 参数接受一个 Text 组件,用于显示文本内容。
    • selectionColorhandleColor 是可选参数,用于自定义文本选择和手柄的颜色。
    • onTextSelectionChanged 是一个可选的回调函数,当文本选择范围变化时会被调用,并接收选择的起始和结束位置。
  5. ScaffoldAppBar

    • Scaffold 提供了页面的基本结构,包括顶部栏和主体内容。
    • AppBar 显示了应用的标题。
  6. Padding

    • 用于为页面内容添加内边距。

这个示例展示了如何使用selectable_container插件创建一个可选择的文本容器,并处理文本选择事件。你可以根据实际需求调整文本内容、样式和事件处理逻辑。

回到顶部