/probable-dollop

Flutter grocery application for mobile.

Primary LanguageDartMIT LicenseMIT

Stock

Flutter

A new Flutter project.

Getting Started

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Tutorial from Flutter Docs

Currently this project is an implementation of the tutorial from the flutter docs.

Build Android APK

We can build an android APK for the application that can be downloaded and installed on android devices for offline use. The APK is the release version of the application, and can be found in the build/app/outputs/flutter-apk/app-release.apk here.

$ flutter build apk

Setup Development environment

First we install the java sdk.

$ sudo apt install openjdk-11-jdk

Then we install android studio.

$ sudo snap install android-studio --classic

Then we install flutter.

$ sudo apt-get install flutter -classic

Then we test the installation. All ticks should be green.

$ flutter doctor