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

outdated

A highly customizable bar graph(or wave graph) with animation, color, radius, spaces, etc.

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),
              ],
            )
          ],
        ),
      ),
    );
  }
}
116
likes
0
points
906
downloads

Publisher

verified publishersonub.com

Weekly Downloads

A highly customizable bar graph(or wave graph) with animation, color, radius, spaces, etc.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on audio_wave