music_visualizer

Creator: coderz1093

Last updated:

Add to Cart

Description:

music visualizer

visualizer_example #
A new Flutter project.
Getting Started #
Show some ❤️ and star the repo to support the project #
Screenshots #

Example #

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

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

class MyApp extends StatelessWidget {
final List<Color> colors = [
Colors.red[900]!,
Colors.green[900]!,
Colors.blue[900]!,
Colors.brown[900]!
];

final List<int> duration = [900, 700, 600, 800, 500];

@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Music Visualizer Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MusicVisualizer(
barCount: 30,
colors: colors,
duration: duration,
),
);
}
}

copied to clipboard
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:

Lab: Write your first Flutter app
Cookbook: Useful Flutter samples

For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.