skip to Main Content

enter image description here

The version i used firebase_database: ^9.1.7, flutter_geofire: ^2.0.0

3

Answers


  1. Run:

     $ flutter pub add flutter_geofire
    

    This will add a line like this to your package’s pubspec.yaml:

    dependencies:
      flutter_geofire: ^2.0.1
    
    Login or Signup to reply.
  2. Try

    pod update and then pod install

    Login or Signup to reply.
  3. A way I ‘reset’ pods:

    cd ios

    mv Podfile podfile-bak

    rm -rf Pod*

    pod init

    mv podfile-bak Podfile

    pod install

    pod update

    cd ..

    flutter run

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