You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
davhojt 4328e8f3dc chore(mobile-dev): move resources closer to each project 1 year ago
..
audit docs(secure-notes): improve audit format 2 years ago
resources chore(mobile-dev): move resources closer to each project 1 year ago
README.md chore(mobile-dev): move resources closer to each project 1 year ago

README.md

Secure Notes

Introduction

The app where you can add your own notes. It should behave as normal notes app where you can add, modify, remove old notes, but the app should be secure. Being secure means that the notes should only be accessible through the app, and only after biometric authentication.

Packages: sqflite package.

Objective

  • Work with textfields
  • Work with keyboard
  • Editing
  • Deleting
  • Reordering

First Part

  • Main Screen displayd list of notes with title, and description.
  • Implement ReordableListView to reorder items in list
  • Add ability to delete item by swiping
  • Add "add" button, which opens screen with 3 text fields

Second Part

  • Screen to add new notes.
  • If any of the fields is empty, show error.

Third Part

  • Edit Screen.
  • Show text in textfields to edit.

Fourth Part

Add sqflite package, so your notes will be saved, even when app reloads. When app loads it should get notes from database.

class Database {
Database _db;

    Future create() async {
        Directory path = await getApplicationDocumentsDirectory();
        String dbPath = join(path.path, "database.db");

        _db = await openDatabase(dbPath, version: 1);
    }
}

Database class should also have CRUD methods like getAllNotes, deleteAllNotes, addNote, deleteNote, updateNote.

  • getAllNotes
  • deleteAllNotes
  • addNote
  • deleteNote
  • updateNote

Fifth Part

Make a biometric authentication. Make sure that notes are not accessible without firstly authenticating user.

  • Note: you may use local_auth

Sixth Part

Localize your apllication.