You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The audio waveform is not rendering correctly in the app, and it appears to be cut off on the left side. I have attached a screenshot below to illustrate the issue.
Describe the bug
The audio waveform is not rendering correctly in the app, and it appears to be cut off on the left side. I have attached a screenshot below to illustrate the issue.
To Reproduce
`Widget build(BuildContext context) {
return Scaffold(
appBar: _appbar(widget.meeting),
body: Padding(
padding: EdgeInsets.only(left: 20),
child: recordControls(),
));
}
Widget recordControls() {
try {
return AudioWaveforms(
enableGesture: false,
size: Size(double.infinity, 80),
recorderController: _recorderController,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12.0),
color: Colors.transparent,
),
waveStyle: WaveStyle(
extendWaveform: true,
spacing: 21,
scaleFactor: 200,
showMiddleLine: false,
waveColor: AppUtils.isDarkTheme(context)
? Colors.white
: Colors.grey.shade800,
waveCap: StrokeCap.round,
waveThickness: 5.0,
),
);
} catch (e) {
Trace.trackException(
error: e, location: "RecordMeetingDashboard_recordControls");
return Container();
}
}`
Expected behavior
The waveform should render completely from the left side without any clipping.
Smartphone (please complete the following information):
Android and ios
Screenshots
Additional context
AudioWaveforms package version: audio_waveforms: ^1.1.1
The text was updated successfully, but these errors were encountered: