0

My friend and I have designed the frontend of our app on flutterflow. However, there is a limitation when it comes to customizing the functionalities and implementing api on the webpage. Is there anyway I can import the codes in another ide such as vsc with dart and flutter extension. Will the code still run if I do so?

I have copied the login codes from flutterflow into my main function in a new flutter project on vsc and added the dependencies needed but there is a lot of error which I don't know how to fix. enter image description here

Munsif Ali
  • 1,839
  • 1
  • 8
  • 22
kai lik
  • 9
  • 1

1 Answers1

0

I am not a FlutterFlow user, but I found out that you can export your project from FlutterFlow to github. I typed down "how to export from flutterflow" in YouTube search and I've got quite a few results.

What I can see in the image you've uploaded is that you lack of dependencies (like GoRouter) in pubspec.yaml file. Exporting from FlutterFlow to github, then cloning github project on your computer, then executing flutter pub get from command-line, should set up working project.

PrzemekTom
  • 1,328
  • 1
  • 13
  • 34