'Flutter : Issue with the dependencies in the project
I am using a prebuilt project and I am getting below issue with the three dependencies mentioned
Error: Cannot run with sound null safety, because the following dependencies don't support null safety:
- package:place_picker
- package:chips_choice
- package:location
Solution 1:[1]
Replace these three packages with
- place_picker: ^0.9.20-nullsafety
- chips_choice_null_safety: ^2.0.6
- location: ^4.3.0
All supports null safely. These versions as latest/pre-release as per May 5, 2022. Versions might get updated in future.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Rahul |