sdk-for-flutter
sdk-for-flutter copied to clipboard
[READ-ONLY] Official Appwrite Flutter SDK 💙
### 👟 Reproduction steps Self Hosting with a nginx proxy --- nginx configuration ``` server { server_name app.codergym.fit; location / { proxy_pass http://localhost:81; proxy_set_header Host $host; } location /v1/realtime/ {...
### 🔖 Feature description Because appwrite 12.0.1 depends on package_info_plus ^4.0.2 and no versions of appwrite match >12.0.1
### 👟 Reproduction steps I am using flutter_downloader plugin to download storage files, but it is failing with following error: `flutter: Callback on UI isolate: task (taskid) is in status...
## What does this PR do? (Provide a description of what this PR does.) ## Test Plan (Write your test plan here. If you changed any code, please provide us...
### 👟 Reproduction steps ``` final tryGraphQL = await ApiClient.graphQL.query(query: {'query': """ query { databasesListDocuments( databaseId: "$appwriteDatabaseId", collectionId: "$collectionId", queries: ["equal("name", "myname")"] ) { total documents { _id data }...
### 👟 Reproduction steps Trying to call the following code from this [documentation](https://appwrite.io/docs/products/databases/databases#create-using-server-sdks): ```dart import 'package:dart_appwrite/dart_appwrite.dart'; void main() { // Init SDK Client client = Client(); Databases databases = Databases(client);...
### 👟 Reproduction steps https://appwrite.io/docs/references/cloud/client-flutter/teams#listMemberships Is there option to Queue with Roles in teams, like searching for users who have Role : owner for example ? it's working for Documents...
### 👟 Reproduction steps After setting up all in androidmanifest.xml if you call account.createOAuth2Session(provider: google) you will get the login screen. Then you enter your google information and it works,...
# Cleanup Unused Channels in RealtimeMixin ## What does this PR do? This pull request addresses the issue of concurrent modification errors in the RealtimeMixin class. Specifically, it modifies the...
### 👟 Reproduction steps Hi there , I updated flutter sdk and appwrite from 0.15 to latest Needed to do some changes for flutter code for sure but I faced...