[ENH]: Use null-safe dependencies
See original GitHub issueIs your feature request related to a problem? Please describe.
Both flutter_sound
and flutter_sound_lite
depend on older dependencies, thus projects that depend on fluter_sound
or flutter_sound_light
cannot be upgraded to null-safe code.
Describe the solution you’d like Upgrade dependencies, e.g.:
dependencies:
flutter_spinkit: ^5.0.0
logger: ^1.0.0-nullsafety.0
path: ^1.8.0
path_provider: ^2.0.1
provider: ^5.0.0
recase: ^3.0.1
synchronized: ^3.0.0
uuid: ^3.0.1
Describe alternatives you’ve considered sorry, none
Additional context Note that you can mix null-safe and other code now, compare https://dart.dev/null-safety/migration-guide
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:7
Top Results From Across the Web
Issue #536 · ryanheise/audio_service - Null safety - GitHub
I've just published a stable preview of the null-safe version of just_audio, and previously published the same for flutter_isolate. All ...
Read more >Migrating to null safety - Dart programming language
Use dart pub outdated --mode=null-safety to make sure that all dependencies are null safe and up-to-date. Start the migration tool by running the...
Read more >Comprehensive Guide to Null Safety in Kotlin - Baeldung
Comprehensive Guide to Null Safety in Kotlin · 1. Overview · 2. Maven Dependency · 3. Nullable and Non-Nullable Reference Types · 4....
Read more >sentry 4.1.0-nullsafety.1 | Dart Package - Pub.dev
A crash reporting library for Dart that sends crash reports to Sentry.io. This library supports Dart VM and Web. For Flutter consider sentry_flutter...
Read more >flutter error:Because xylophone depends on ... - Stack Overflow
Remove dependencies from english_words and use like dependencies: flutter: sdk: flutter cupertino_icons: ^0.1.2 english_words: ^4.0.0.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@robert-virkus :
Finally, I decided to work on this issue, now. You can expect to get a new branch which will be null-safety compliant some time next week.
Wow, that was quick! Thanks, for me everything works fine!!!