{"id":26714261,"url":"https://github.com/reynaldineo/note-keeper-flutter","last_synced_at":"2026-05-13T07:04:08.059Z","repository":{"id":284323406,"uuid":"952391032","full_name":"reynaldineo/Note-Keeper-Flutter","owner":"reynaldineo","description":"Note Keeper App using Flutter with local SQLite database","archived":false,"fork":false,"pushed_at":"2025-03-25T09:20:25.000Z","size":286,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-25T10:27:59.160Z","etag":null,"topics":["flutter","sqlite"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/reynaldineo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-21T07:50:48.000Z","updated_at":"2025-03-25T09:20:28.000Z","dependencies_parsed_at":"2025-03-25T10:38:10.823Z","dependency_job_id":null,"html_url":"https://github.com/reynaldineo/Note-Keeper-Flutter","commit_stats":null,"previous_names":["reynaldineo/note-keeper-flutter"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reynaldineo%2FNote-Keeper-Flutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reynaldineo%2FNote-Keeper-Flutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reynaldineo%2FNote-Keeper-Flutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reynaldineo%2FNote-Keeper-Flutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reynaldineo","download_url":"https://codeload.github.com/reynaldineo/Note-Keeper-Flutter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245850358,"owners_count":20682647,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flutter","sqlite"],"created_at":"2025-03-27T13:18:54.926Z","updated_at":"2026-05-13T07:04:07.950Z","avatar_url":"https://github.com/reynaldineo.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tugas PBB\n\n| **Name**               | **NRP**    |\n| ---------------------- | ---------- |\n| Reynaldi Neo Ramadhani | 5025221265 |\n\nA Flutter project for the **Programming for Mobile Devices** course. This application is a **Note-Keeping App** that allows users to manage their personal notes, with functionality to add, edit, delete, and view notes. The app also features priority management, date creation, and a stylish user interface.\n\n## Link Short Demo\n\nhttps://drive.google.com/file/d/1eMZCBLeg7JuhDX8sW-AkNjA7rxsvUMyq/view\n\n## Technologies Used\n\n-   **Flutter**: Framework for building cross-platform apps.\n-   **Dart**: Programming language used for Flutter development.\n-   **SQLite**: Local database for storing notes.\n\n### Reference Link\n\nhttps://youtu.be/xke5_yGL0uk?si=oa3alevcPgqgLKAP\n\n## Features\n\n### 1. **Add Note**\n\nUsers can add new notes to the app by providing the following information:\n\n-   **Title**: The main title of the note (e.g., \"Meeting Notes\").\n-   **Description**: The content or details of the note.\n-   **Priority**: Each note can be assigned one of two priority levels: **High** or **Low**.\n-   **Date**: The date when the note was created, which is automatically set upon saving.\n\n**How to Add a Note:**\n\n-   Tap on the **Save** button after filling out the Title, Description, and Priority.\n-   A new note will be added and saved in the local database with a creation date.\n\n### 2. **Edit Note**\n\nUsers can edit existing notes by updating their Title, Description, and Priority. The app allows the modification of any attribute of the note, and the changes are reflected in the database after saving.\n\n**How to Edit a Note:**\n\n-   Select a note from the list.\n-   Update the Title, Description, or Priority as needed.\n-   Tap **Save** to save the changes.\n\n### 3. **Delete Note**\n\nUsers can delete notes they no longer need. When a note is deleted, it is removed from the list and the database.\n\n**How to Delete a Note:**\n\n-   Select a note from the list.\n-   Tap on the **Delete** button to permanently remove the note from the app.\n-   A confirmation dialog appears to confirm the deletion.\n\n### 4. **View Notes**\n\nUsers can view all notes in a list. The notes are displayed in a scrollable list where each note shows its title, description, and priority. Notes are listed in **priority order**, with high-priority notes displayed at the top.\n\n**How to View Notes:**\n\n-   Upon launching the app, users can see the list of saved notes.\n-   Notes are displayed with a **priority indicator** and basic details.\n-   The app supports **scrolling** to navigate through many notes.\n\n### 5. **Priority Levels**\n\nEach note can be assigned a priority level:\n\n-   **High**: Denoted by a **Red** color or priority indicator.\n-   **Low**: Denoted by a **Yellow** color or priority indicator.\n\nNotes are color-coded and sorted based on their priority. **High** priority notes are shown first in the list, followed by **Low** priority notes. Users can select the priority for each note when creating or editing the note.\n\n### 6. **Dialog with Status Updates**\n\nWhen a note is saved or deleted, the app shows a **status dialog** informing the user about the success or failure of the operation.\n\n**Dialog Features:**\n\n-   The dialog title is customizable to indicate success or failure (e.g., \"Note Saved Successfully\").\n-   The dialog has a **stylish OK button** to close the alert.\n\n### 7. **Data Persistence**\n\nAll notes are stored in the local SQLite database using **DatabaseHelper**. The app allows for **insertion**, **deletion**, **editing**, and **reading** of notes.\n\n**Note Storage and Operations:**\n\n-   **Save**: Notes are saved with their Title, Description, Priority, and Date in the database.\n-   **Delete**: Notes can be deleted from the database via the **Delete** button.\n-   **Edit**: Updated notes are saved back into the database with their new details.\n-   **Read**: Notes can be retrieved from the database to be displayed in the app.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freynaldineo%2Fnote-keeper-flutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freynaldineo%2Fnote-keeper-flutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freynaldineo%2Fnote-keeper-flutter/lists"}