Mobile application which connect your web app with mobile phone. Tested for Android.
This is the original project of Siraj Raval.
If you have problem with com2
directory for Windows OS, please, use
this issue
to fix it.
- Install Flutter.
Run
flutter doctor
in console. Resolve problems with certificates and plugins.
- Download and open this code in Android Studio as a new Flutter project.
- It will ask you to 'get' all dependencies, say yes and it'll will all be installed automatically.
If you get errorBecause flutter_app11 depends on flutter_test any from sdk which doesn't exist (the Flutter SDK is not available), version solving failed
. Then you need to configure path to Flutter in project settings:File --> Settings --> Languages & Frameworks --> Flutter --> Flutter SDK path
. Enter your path to Flutter directory.
- Run
flutter packages get
in console in project directory. It'll update.packages
file. - Replace the default render link in
main.dart
to the link to your deployed render app.
Dart is a client-optimized programming language for fast apps on multiple platforms. It is developed by Google and is used to build mobile, desktop, backend and web applications. - Notice the 2 functions
user_signup
anduser_login
in themain.dart
file. This is where your stripe and firebase authentication code will be placed to make your app commercial.
I excluded (commented out) user authentication code in the main.dart.