wave_blob 1.0.5 copy "wave_blob: ^1.0.5" to clipboard
wave_blob: ^1.0.5 copied to clipboard

This package provide a blob wave animation that can be customized to your needs. You can playing audio using amplitude of voice.

Features #

Blob Wave Animation #

This package provide a blob wave animation that can be customized to your needs. You can playing audio using amplitude of voice.

Preview #

Getting started #

Installing #

  1. Add dependencies to pubspec.yaml
dependencies:
    wave_blob: <latest-version>
copied to clipboard
  1. Run pub get.
flutter pub get
copied to clipboard
  1. Import package
import 'package:wave_blob/wave_blob.dart';
copied to clipboard

Usage #

Simple usage

  1. Wrap Widget with WaveBlob and assign needed parameter.
SizedBox(
    width: MediaQuery.sizeOf(context).width * 0.4,
    height: MediaQuery.sizeOf(context).width * 0.4,
    child: WaveBlob(
        child: const Icon(
            Icons.mic,
            color: Colors.white,
            size: 50.0,
        ),
    ),
),
copied to clipboard

Don't forget set Width and Height of widget.


Check example app for more info.

Customization #

You can customize blob easily. You can change blob color, animation speed, min and max radius and etc.


Example:


Author #

53
likes
140
points
570
downloads

Publisher

unverified uploader

Weekly Downloads

2024.08.30 - 2025.03.14

This package provide a blob wave animation that can be customized to your needs. You can playing audio using amplitude of voice.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, vector_math

More

Packages that depend on wave_blob