-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add Flutter example #36
base: main
Are you sure you want to change the base?
Conversation
with_flutter/README.md
Outdated
Run the command below to install project dependencies: | ||
|
||
``` | ||
flutter pub get | ||
``` | ||
|
||
Run the Express application using the following command: | ||
|
||
``` | ||
flutter run | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How can I install the Flutter CLI?
Also, how to run this in a Mac? I tried this but it keeps saying no wireless device connected.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Saffron-codes can you help me with what's to be done to set up android or ios virtual devices?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure!. Let's go with the easy one, Android.
- Install Android Studio
- Use AVD Manager to setup emulators, choose any of the latest android SDK
- Open the project in Android Studio. Start the installed emulator.
- Now, execute
flutter run
This PR adds an example project demonstrating how to use Neon with Flutter. Since Flutter doesn't allow hyphens in project names (only underscores), I have adjusted the naming convention to follow the guidelines. The directory is named
with_flutter
to maintain consistency with other examples.