Skip to content

Commit 603b93f

Browse files
authored
🔨 Fix:: Pana Score Fix (#98)
- Ignored warning of unnecessary import of typed_data - Updated CHANGELOG.md
1 parent b3a7b36 commit 603b93f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
## 0.1.5+1
22

3-
- Add missing import.
3+
- Added missing import.
44

55
## 0.1.5
66

77
- Added bitRate feature for Android & IOS (Default to 64kbps) - thanks [@abhay-s-rawat](https://github.com/abhay-s-rawat).
88
- Fixed [#86](https://github.com/SimformSolutionsPvtLtd/audio_waveforms/issues/86) - thanks [@rlee1990](https://github.com/rlee1990)
99
- Updated docs and fixed docs,variable name,function names typos
10-
- Removed dates from changelog(see versions tab from pub.dev to get release version dates).
1110

1211
## 0.1.4
1312

lib/src/controllers/player_controller.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import 'dart:async';
22
import 'dart:io';
3-
import 'dart:typed_data';
3+
// TODO: Remove when fully migrated to flutter 3.3
4+
import 'dart:typed_data'; //ignore: unnecessary_import
45

56
import 'package:audio_waveforms/audio_waveforms.dart';
67
import 'package:audio_waveforms/src/base/constants.dart';

0 commit comments

Comments
 (0)