Skip to content

hosein-nadali/flutter-wave-blob

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages