Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[READ-ONLY] Official Appwrite Flutter SDK 💙

License

NotificationsYou must be signed in to change notification settings

appwrite/sdk-for-flutter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

pub packageLicenseVersionBuild StatusTwitter AccountDiscord

This SDK is compatible with Appwrite server version 1.7.x. For older versions, please checkprevious releases.

Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Flutter SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go tohttps://appwrite.io/docs

Appwrite

Installation

Add this to your package'spubspec.yaml file:

dependencies:appwrite:^17.0.2

You can install packages from the command line:

flutter pub add appwrite

Getting Started

Add your Flutter Platform

To init your SDK and start interacting with Appwrite services, you need to add a new Flutter platform to your project. To add a new platform, go to your Appwrite console, choose the project you created in the step before, and click the 'Add Platform' button.

From the options, choose to add a newFlutter platform and add your app credentials. Appwrite Flutter SDK currently supports building apps for Android, iOS, Linux, Mac OS, Web and Windows.

If you are building your Flutter application for multiple devices, you have to follow this process for each different device.

Android

ForAndroid first add your app name and package name, Your package name is generally theapplicationId in your app-levelbuild.gradle file. By registering your new app platform, you are allowing your app to communicate with the Appwrite API.

In order to capture the Appwrite OAuth callback url, the following activity needs to be added inside the<application> tag, along side the existing<activity> tags in yourAndroidManifest.xml. Be sure to replace the[PROJECT_ID] string with your actual Appwrite project ID. You can find your Appwrite project ID in your project settings screen in the console.

<manifest ...>    ....    <application ...>        ....<!-- Add this inside the <application> tag, along side the existing <activity> tags-->        <activityandroid:exported="true"android:name="com.linusu.flutter_web_auth_2.CallbackActivity" >            <intent-filterandroid:label="flutter_web_auth_2">                <actionandroid:name="android.intent.action.VIEW" />                <categoryandroid:name="android.intent.category.DEFAULT" />                <categoryandroid:name="android.intent.category.BROWSABLE" />                <dataandroid:scheme="appwrite-callback-[PROJECT_ID]" />            </intent-filter>        </activity>    </application></manifest>

iOS

ForiOS first add your app name and Bundle ID, You can find your Bundle Identifier in the General tab for your app's primary target in Xcode.

The Appwrite SDK uses ASWebAuthenticationSession on iOS 12+ and SFAuthenticationSession on iOS 11 to allow OAuth authentication. You have to change your iOS Deployment Target in Xcode to be iOS >= 11 to be able to build your app on an emulator or a real device.

  1. In Xcode, open Runner.xcworkspace in your app's ios folder.
  2. To view your app's settings, select the Runner project in the Xcode project navigator. Then, in the main view sidebar, select the Runner target.
  3. Select the General tab.
  4. In Deployment Info, 'Target' select iOS 11.0

Linux

ForLinux add your app name and package name, Your package name is generally thename in yourpubspec.yaml file. If you cannot find the correct package name, run the application in linux, and make any request with proper exception handling, you should get the application ID needed to add in the received error message.

Mac OS

ForMac OS add your app name and Bundle ID, You can find your Bundle Identifier in the General tab for your app's primary target in Xcode.

The Appwrite SDK uses ASWebAuthenticationSession on macOS 10.15+ to allow OAuth authentication. You have to change your macOS Deployment Target in Xcode to be macOS >= 10.15 to be able to build your app for macOS.

Web

Appwrite 0.7, and the Appwrite Flutter SDK 0.3.0 have added support for Flutter Web. To build web apps that integrate with Appwrite successfully, all you have to do is add a web platform on your Appwrite project's dashboard and list the domain your website will use to allow communication to the Appwrite API.

For web in order to capture the OAuth2 callback URL and send it to the application using JavaScriptpostMessage(), you need to create an html file inside./web folder of your Flutter project. For exampleauth.html with the following content.

<!DOCTYPE html><title>Authentication complete</title><p>Authentication is complete. If this does not happen automatically, please close the window.</p><script>functionpostAuthenticationMessage(){constmessage={'flutter-web-auth-2':window.location.href};if(window.opener){window.opener.postMessage(message,window.location.origin);window.close();}elseif(window.parent&&window.parent!==window){window.parent.postMessage(message,window.location.origin);}else{localStorage.setItem('flutter-web-auth-2',window.location.href);window.close();}}postAuthenticationMessage();</script>

Redirection URL passed to the authentication service must be the same as the URL on which the application is running (schema, host, port if necessary) and the path must point to created HTML file, /auth.html in this case. The callbackUrlScheme parameter of the authenticate() method does not take into account, so it is possible to use a schema for native platforms in the code.

Flutter Web Cross-Domain Communication & Cookies

While running Flutter Web, make sure your Appwrite server and your Flutter client are using the same top-level domain and the same protocol (HTTP or HTTPS) to communicate. When trying to communicate between different domains or protocols, you may receive HTTP status error 401 because some modern browsers block cross-site or insecure cookies for enhanced privacy. In production, Appwrite allows you set multiplecustom-domains for each project.

Windows

ForWindows add your app name and package name, Your package name is generally thename in yourpubspec.yaml file. If you cannot find the correct package name, run the application in windows, and make any request with proper exception handling, you should get the application id needed to add in the received error message.

Init your SDK

Initialize your SDK with your Appwrite server API endpoint and project ID, which can be found in your project settings page.

import'package:appwrite/appwrite.dart';voidmain() {Client client=Client();  client    .setEndpoint('https://localhost/v1')// Your Appwrite Endpoint    .setProject('5e8cf4f46b5e8')// Your project ID    .setSelfSigned()// Use only on dev mode with a self-signed SSL cert  ;}

Before starting to send any API calls to your new Appwrite instance, make sure your Android or iOS emulators has network access to the Appwrite server hostname or IP address.

When trying to connect to Appwrite from an emulator or a mobile device, localhost is the hostname for the device or emulator and not your local Appwrite instance. You should replace localhost with your private IP as the Appwrite endpoint's hostname. You can also use a service likengrok to proxy the Appwrite API.

Make Your First Request

Once your SDK object is set, access any of the Appwrite services and choose any request to send. Full documentation for any service method you would like to use can be found in your SDK documentation or in the [API References](https://appwrite.io/docs) section.

// Register UserAccount account=Account(client);final user=await account  .create(    userId:ID.unique(), email:"email@example.com", password:"password", name:"Walter O'Brien"  );

Full Example

import'package:appwrite/appwrite.dart';voidmain() {Client client=Client();  client    .setEndpoint('https://localhost/v1')// Your Appwrite Endpoint    .setProject('5e8cf4f46b5e8')// Your project ID    .setSelfSigned()// Use only on dev mode with a self-signed SSL cert    ;// Register UserAccount account=Account(client);final user=await account    .create(      userId:ID.unique(), email:"email@example.com", password:"password", name:"Walter O'Brien"    );}

Error Handling

The Appwrite Flutter SDK raisesAppwriteException object withmessage,type,code andresponse properties. You can handle any errors by catchingAppwriteException and present themessage to the user or handle it yourself based on the provided error information. Below is an example.

Account account=Account(client);try {final user=await account.create(userId:ID.unique(), email:"email@example.com", password:"password", name:"Walter O'Brien");print(user.toMap());}onAppwriteExceptioncatch(e) {//show message to user or do other operation based on error as requiredprint(e.message);}

Learn more

You can use the following resources to learn more and get help

Contribution

This library is auto-generated by Appwrite customSDK Generator. To learn more about how you can help us improve this SDK, please check thecontribution guide before sending a pull-request.

License

Please see theBSD-3-Clause license file for more information.


[8]ページ先頭

©2009-2025 Movatter.jp