Skip to content

BorisGautier/flutter_appwrite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_appwrite

A new Flutter project.

Before starting you must have a server with AppWrite installed on it

Installation of the Flutter application

$ git clone https://github.com/BorisGautier/flutter_appwrite.git
$ cd flutter_appwrite
$ flutter pub get
  • Create the config.dart file in /lib/src/utils/ and insert this content by replacing the values with the parameters of your appWrite server.
const appWriteApiUrl = "https://localhost/v1";
const appwriteProjectId = "PROJECTID";
  • Modify the AndroidManifest.xml file (/android/app/src/main/AndroidManifest.xml) by replacing PROJECTID with the id of your AppWrite project

  • Generate the apk

$ flutter build apk