diff --git a/app/sdks/flutter-dart/CHANGELOG.md b/app/sdks/flutter-dart/CHANGELOG.md index 0b92c5f44..c331b89f5 100644 --- a/app/sdks/flutter-dart/CHANGELOG.md +++ b/app/sdks/flutter-dart/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.1.0 + +- Added examples file +- Some minor style fixes + ## 0.0.14 - Using MultipartFile for file uploads diff --git a/app/sdks/flutter-dart/example/README.md b/app/sdks/flutter-dart/example/README.md index f0ed67887..af02a189d 100644 --- a/app/sdks/flutter-dart/example/README.md +++ b/app/sdks/flutter-dart/example/README.md @@ -8,7 +8,7 @@ Init your Appwrite client: client .setEndpoint('https://localhost/v1') // Your Appwrite Endpoint .setProject('5e8cf4f46b5e8') // Your project ID - .setSelfSigned() + .setSelfSigned() // Remove in production ; ``` diff --git a/docs/sdks/dart/CHANGELOG.md b/docs/sdks/dart/CHANGELOG.md index 0b92c5f44..c331b89f5 100644 --- a/docs/sdks/dart/CHANGELOG.md +++ b/docs/sdks/dart/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.1.0 + +- Added examples file +- Some minor style fixes + ## 0.0.14 - Using MultipartFile for file uploads diff --git a/docs/sdks/dart/EXAMPLES.md b/docs/sdks/dart/EXAMPLES.md index af02a189d..f6768a5f8 100644 --- a/docs/sdks/dart/EXAMPLES.md +++ b/docs/sdks/dart/EXAMPLES.md @@ -16,11 +16,11 @@ Init your Appwrite client: Create a new user and session: ```dart - Account account = Account(client); +Account account = Account(client); - Response user = await account.create(email: 'me@appwrite.io', password: 'password', name: 'My Name'); +Response user = await account.create(email: 'me@appwrite.io', password: 'password', name: 'My Name'); - Response session = await account.createSession(email: 'me@appwrite.io', password: 'password'); +Response session = await account.createSession(email: 'me@appwrite.io', password: 'password'); ```