A functional flutter Todo app designed appwrite with minimal features, just enough to help you do your tasks.
Appwrite is an end-to-end backend server that is aiming to abstract the complexity of common, complex, and repetitive tasks required for building a modern app.
Appwrite provides you with a set of APIs, tools, and a management console UI to help you build your apps a lot faster and in a much more secure way.
- Build on BLoC Architecture Pattern
 - Reactive Programming
 - Sign up by Registering inputting email and password
 - Enter email and password to Login
 - Add Tasks to create new task
 - Click Complete to complete a task
 - Click Favourite to add a task as favourite
 - Swipe to delete the task
 - View All Task
 - View Completed Task
 - View Favourite Task
 
Appwrite backend server is designed to run in a container environment. Running your server is as easy as running one command from your terminal. You can either run Appwrite on your localhost using docker-compose or on any other container orchestration tool like Kubernetes, Docker Swarm or Rancher.
The easiest way to start running your Appwrite server is by running our docker-compose file. Before running the installation command make sure you have Docker installed on your machine:
docker run -it --rm \
    --volume /var/run/docker.sock:/var/run/docker.sock \
    --volume "$(pwd)"/appwrite:/install/appwrite:rw \
    -e version=0.6.2 \
    appwrite/installdocker run -it --rm ^
    --volume //var/run/docker.sock:/var/run/docker.sock ^
    --volume "%cd%"/appwrite:/install/appwrite:rw ^
    -e version=0.6.2 ^
    appwrite/installdocker run -it --rm ,
    --volume /var/run/docker.sock:/var/run/docker.sock ,
    --volume ${pwd}/appwrite:/install/appwrite:rw ,
    -e version=0.6.2 ,
    appwrite/installOnce the Docker installation completes, go to http://localhost to access the Appwrite console from your browser. Please note that on non-linux native hosts, the server might take a few minutes to start after installation completes.
For advanced production and custom installation, check out our Docker environment variables docs. You can also use our public docker-compose.yml file to manually set up and environment.
To build and run this project:
- Get Flutter here if you don't already have it
 - Clone this repository
 cdinto the repo folder- run 
flutter run-androidorflutter run-iosto build the app 
(Please note that a Mac with XCode is required to build for iOS)





