skip to Main Content

I want to add a splash screen. I entered the documentation for Filters and followed the steps, but this problem appeared to me. What is the solution?

Because every version of flutter_test from sdk depends on path 1.8.3 and flutter_native_splash >=2.3.12 depends on path ^1.9.0, flutter_test from sdk is incompatible with flutter_native_splash >=2.3.12.
So, because telecom depends on both flutter_native_splash ^2.4.0 and flutter_test from sdk, version solving failed

2

Answers


  1. Remove the version specified in flutter_native_splash package or run the command "flutter clean" and then "flutter pub upgrade" to upgrade all the packages.

    Login or Signup to reply.
  2. try

    flutter pub upgrade –major-versions

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search