audio_waveforms icon indicating copy to clipboard operation
audio_waveforms copied to clipboard

The last wave form is always flickering when recording

Open noygafni opened this issue 3 years ago • 1 comments

My code:

@override
  void initState() {
    super.initState();
    _recorderController = RecorderController();
    _recorderController.record();
  }

...

AudioWaveforms(
    size: const Size(230, 50),
    recorderController: _recorderController,
    waveStyle: const WaveStyle(
      waveColor: Colors.pink,
      spacing: 8.0,
      extendWaveform: true,
      showMiddleLine: false,
   ),
)

For some reason the last wave form always appears to be flickering: recording flickering bug

Is this a bug? or am I doing something wrong?

noygafni avatar May 16 '22 19:05 noygafni

Actually when a wave is generated the first time it just suddenly appears without any animation so that's why it looks flickering. I will put it under bug.

ujas-m-simformsolutions avatar May 17 '22 05:05 ujas-m-simformsolutions

I noticed that too, would be glad for fix

marcinFDT avatar Mar 15 '23 10:03 marcinFDT