Notes
A simple notes app written in Dart using Flutter framework.
Compilation
To compile this app, simply clone the repo and run the following command:
flutter build <package-type> --target-platform <platform> --split-per-abi
- Package types can be :
apk
oraab
- Platforms can be : As supported by Flutter for e.g.
android-arm
,android-arm64
etc. If no platform is specified, flutter will default to all platforms supported at the moment. - If
--split-per-abi
argument is not provided, Flutter will generate afat
package which will be larger in size but will support all platforms.
Development
You can simply import this project into your Android Studio or VS Code. Follow official instructions to set up SDKs required for development if not done already.