audio_wave 0.0.1 copy "audio_wave: ^0.0.1" to clipboard
audio_wave: ^0.0.1 copied to clipboard

outdated

Customizable bar graph(wave graph) with wave animation.

example/lib/main.dart

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

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

class MyStatelessApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Stateless Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: StatelessWidgetDemo(),
    );
  }
}

class StatelessWidgetDemo extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return SafeArea(
      child: Scaffold(
        backgroundColor: Colors.teal,
        body: Column(
          children: [
            Text('Audio Wave Examples'),
            AudioWave(
              bars: [
                AudioWaveBar(height: 50),
              ],
            )
          ],
        ),
      ),
    );
  }
}
113
likes
0
pub points
91%
popularity

Publisher

verified publishersonub.com

Customizable bar graph(wave graph) with wave animation.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on audio_wave