Flutter浮动气泡效果插件floating_bubbles的使用

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

Flutter浮动气泡效果插件floating_bubbles的使用

简介

floating_bubbles 是一个Flutter插件,用于在Widget的前景中添加浮动气泡效果。它可以创建动态的气泡动画,并且可以根据需要设置为一次性播放或一直重复播放。

获取开始

添加依赖

在你的 pubspec.yaml 文件中添加以下依赖:

dependencies:
  floating_bubbles: ^2.6.2

导入包

在Dart文件中导入包:

import 'package:floating_bubbles/floating_bubbles.dart';

使用方法

以下是使用 FloatingBubblesFloatingBubbles.alwaysRepeating 的示例代码。

创建 FloatingBubbles(一次性播放)

此方法创建一个动画并在给定的时间内播放。

return Stack(
  children: [
    Positioned.fill(
      child: Container(
        color: Colors.red,
      ),
    ),
    Positioned.fill(
      child: FloatingBubbles(
        noOfBubbles: 25,
        colorsOfBubbles: [
          Colors.green.withAlpha(30),
          Colors.red,
        ],
        sizeFactor: 0.16,
        duration: 120, // 120 seconds.
        opacity: 70,
        paintingStyle: PaintingStyle.stroke,
        strokeWidth: 8,
        shape: BubbleShape.circle, // circle is the default. No need to explicitly mention if its a circle.
        speed: BubbleSpeed.normal, // normal is the default
      ),
    ),
  ],
);

创建 FloatingBubbles.alwaysRepeating(一直重复播放)

此方法创建一直浮动的气泡,不会停止。

return Stack(
  children: [
    Positioned.fill(
      child: Container(
        color: Colors.red,
      ),
    ),
    Positioned.fill(
      child: FloatingBubbles.alwaysRepeating(
        noOfBubbles: 25,
        colorsOfBubbles: [
          Colors.green.withAlpha(30),
          Colors.red,
        ],
        sizeFactor: 0.16,
        opacity: 70,
        paintingStyle: PaintingStyle.fill,
        shape: BubbleShape.square,
        speed: BubbleSpeed.normal,
      ),
    ),
  ],
);

参数说明

创建 FloatingBubbles() 的参数

名称 描述 是否必须 默认值
noOfBubbles 屏幕上同时存在的气泡数量 -
colorsOfBubbles 气泡颜色列表,随机选择颜色 -
sizeFactor 气泡大小因子 -
duration 动画播放时长(秒) -
opacity 气泡透明度 60
paintingStyle 绘制样式 PaintingStyle.fill
strokeWidth 描边宽度(仅在 PaintingStyle.stroke 时有效) 0
shape 气泡形状 BubbleShape.circle
speed 控制气泡速度 BubbleSpeed.normal

创建 FloatingBubbles.alwaysRepeating() 的参数

名称 描述 是否必须 默认值
noOfBubbles 屏幕上同时存在的气泡数量 -
colorsOfBubbles 气泡颜色列表,随机选择颜色 -
sizeFactor 气泡大小因子 -
opacity 气泡透明度 60
paintingStyle 绘制样式 PaintingStyle.fill
strokeWidth 描边宽度(仅在 PaintingStyle.stroke 时有效) 0
shape 气泡形状 BubbleShape.circle
speed 控制气泡速度 BubbleSpeed.normal

示例代码

下面是一个完整的示例代码,展示了如何使用 floating_bubbles 插件创建浮动气泡效果。

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

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      showPerformanceOverlay: true,
      home: Scaffold(
        body: HomePage(),
      ),
    );
  }
}

// Simple example.
class HomePage extends StatelessWidget {
  const HomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Stack(
      children: [
        Positioned.fill(
          child: Container(
            color: Colors.blue,
          ),
        ),
        Positioned.fill(
          child: FloatingBubbles.alwaysRepeating(
            noOfBubbles: 50,
            colorsOfBubbles: const [
              Colors.white,
              Colors.red,
            ],
            sizeFactor: 0.2,
            opacity: 70,
            speed: BubbleSpeed.slow,
            paintingStyle: PaintingStyle.fill,
            shape: BubbleShape.circle, //This is the default
          ),
        ),
      ],
    );
  }
}

支持平台

  • Android: 支持,无问题
  • iOS: 支持,无问题
  • Web: 支持(需使用HTML渲染器)
  • Windows: 支持,无问题
  • Linux: 尚未测试
  • macOS: 尚未测试

性能测试

该插件已经进行了性能测试,确保在不同设备上的表现良好。详细信息可以参考官方文档中的性能测试部分。

关于作者和支持

如果你喜欢这个插件,请在GitHub上给它一个星🌟。有任何建议或问题,欢迎提交issue或pull request。

许可证

本项目下的脚本和文档均遵循MIT许可证,详情请参阅 LICENSE 文件。

希望这些信息对你有所帮助!如果有任何问题,欢迎随时提问。


更多关于Flutter浮动气泡效果插件floating_bubbles的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter浮动气泡效果插件floating_bubbles的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


当然,以下是如何在Flutter项目中使用floating_bubbles插件来实现浮动气泡效果的示例代码。这个插件可以用来创建类似于聊天应用中的浮动气泡动画效果。

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

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

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

接下来,在你的Flutter项目中创建一个新的Dart文件(例如main.dart),并编写以下代码来展示如何使用floating_bubbles插件:

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

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

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

class BubbleScreen extends StatefulWidget {
  @override
  _BubbleScreenState createState() => _BubbleScreenState();
}

class _BubbleScreenState extends State<BubbleScreen> with SingleTickerProviderStateMixin {
  late AnimationController _controller;

  @override
  void initState() {
    super.initState();
    _controller = AnimationController(
      duration: const Duration(seconds: 5),
      vsync: this,
    )..repeat(reverse: true);
  }

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Floating Bubbles Demo'),
      ),
      body: Center(
        child: FloatingBubbles(
          bubbles: [
            Bubble(
              color: Colors.blue,
              size: 30,
              animationController: _controller,
              duration: const Duration(seconds: 2),
              curve: Curves.easeInOut,
              position: BubblePosition.bottomRight,
            ),
            Bubble(
              color: Colors.red,
              size: 40,
              animationController: _controller,
              duration: const Duration(seconds: 3),
              curve: Curves.bounceInOut,
              position: BubblePosition.topLeft,
            ),
            Bubble(
              color: Colors.green,
              size: 25,
              animationController: _controller,
              duration: const Duration(seconds: 2.5),
              curve: Curves.elasticInOut,
              position: BubblePosition.bottomLeft,
            ),
          ],
        ),
      ),
    );
  }
}

在这个示例中,我们创建了一个简单的Flutter应用,其中包含一个带有浮动气泡效果的页面。每个气泡都由Bubble类表示,并且配置了颜色、大小、动画控制器、动画持续时间和动画曲线等属性。

_controller是一个AnimationController,它控制着气泡动画的循环。我们在initState方法中初始化它,并在dispose方法中释放它,以确保资源得到正确管理。

FloatingBubbles组件接受一个bubbles列表,每个列表项都是一个Bubble对象。你可以根据需要添加更多气泡,并调整它们的属性以实现不同的动画效果。

运行这个代码,你应该能看到在屏幕上循环浮动的气泡效果。希望这个示例对你有所帮助!

回到顶部