diff --git a/example/lib/audio_data/data_widget.dart b/example/lib/audio_data/data_widget.dart index 28c379f..680507e 100644 --- a/example/lib/audio_data/data_widget.dart +++ b/example/lib/audio_data/data_widget.dart @@ -83,8 +83,9 @@ class WavePainter extends CustomPainter { @override void paint(Canvas canvas, Size size) { final barWidth = size.width / 256; - final paint = Paint()..strokeWidth = barWidth * 0.8 - ..color = Colors.yellowAccent; + final paint = Paint() + ..strokeWidth = barWidth * 0.8 + ..color = Colors.yellowAccent; for (var i = 0; i < 256; i++) { late final double waveHeight;