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>
  1. Run pub get.
flutter pub get
  1. Import package
import 'package:wave_blob/wave_blob.dart';

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,
        ),
    ),
),

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 #

33
likes
150
pub points
79%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, vector_math

More

Packages that depend on wave_blob