Milind Soni
Milind Soni

Reputation: 101

Is there a library to plot audio waveforms in flutter applications

I want to plot some ECG data or any audio data waveform using flutter. What would be the best approach to do the same. I have explored many libraries such as mp_flutter but I haven't been able to figure out a way to import the data.

Upvotes: 10

Views: 2473

Answers (2)

Nachiket Gohil
Nachiket Gohil

Reputation: 1213

See this, I found it helpful for my case

Upvotes: 1

Mahesh Jamdade
Mahesh Jamdade

Reputation: 20221

I am not aware about any such library though but using a CustomPainter should be a good start. Custom Paints are pretty easy to use

I hope this example helps you build your waveforms one of the example is shown below.

enter image description here

Upvotes: 0

Related Questions