fix flutter install command : pub get -> pub add#366
Conversation
|
@imtushardave is attempting to deploy a commit to the appwrite Team on Vercel. A member of the Team first needs to authorize it. |
| const example1 = `dependencies: | ||
| appwrite: ^${$versions['client-flutter']}`; | ||
| const example2 = `pub get appwrite`; | ||
| const example2 = `pub add appwrite`; |
There was a problem hiding this comment.
Considering this is what the instructions are for the web SDK:
Should we just have the flutter installation instructions be:
You can install the SDK using the Dart package manager from your terminal:
flutter pub add appwrite
and get rid of the first section about the pubspec.yaml? For reference, the current instructions are:
src/routes/console/project-[project]/overview/platforms/wizard/flutter/step2.svelte
Outdated
Show resolved
Hide resolved
|
@stnguyen90 let's keep the first section and also use |
4af9bc8 to
f21646b
Compare
|
@imtushardave, thanks for updating the PR! 🙏🏼 In the future, please don't forget to re-request a review from the reviewers on the PR. |
Got it @stnguyen90. Will keep this in mind. |


What does this PR do?
Fix flutter installation command - pub get to pub add
Related PRs and Issues
(5277)
Have you read the Contributing Guidelines on issues?