{"id":29562923,"url":"https://github.com/masoudjawnf/flutter-note-app","last_synced_at":"2026-04-18T14:04:44.258Z","repository":{"id":302649081,"uuid":"1013164505","full_name":"masoudjawnf/flutter-note-app","owner":"masoudjawnf","description":"A simple Flutter note-taking app with local SQLite storage. Create, Edit, and delete your notes easily with a clean UI.","archived":false,"fork":false,"pushed_at":"2025-10-31T13:53:42.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-31T15:31:37.514Z","etag":null,"topics":["andorid","dart","flutter","notetakingapp","object-oriented-programming","oop"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/masoudjawnf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-07-03T13:07:11.000Z","updated_at":"2025-10-31T13:53:45.000Z","dependencies_parsed_at":"2025-07-03T14:29:32.565Z","dependency_job_id":"1e3747cb-5e50-46d5-87ad-c0f501a7315d","html_url":"https://github.com/masoudjawnf/flutter-note-app","commit_stats":null,"previous_names":["masoudjawnf/flutter-note-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/masoudjawnf/flutter-note-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masoudjawnf%2Fflutter-note-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masoudjawnf%2Fflutter-note-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masoudjawnf%2Fflutter-note-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masoudjawnf%2Fflutter-note-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/masoudjawnf","download_url":"https://codeload.github.com/masoudjawnf/flutter-note-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/masoudjawnf%2Fflutter-note-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31971500,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["andorid","dart","flutter","notetakingapp","object-oriented-programming","oop"],"created_at":"2025-07-18T18:01:22.052Z","updated_at":"2026-04-18T14:04:44.227Z","avatar_url":"https://github.com/masoudjawnf.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flutter-note-app\nA simple Flutter note-taking app with local SQLite storage. Create, Edit, and delete your notes easily with a clean UI.\n\n# 📝 Flutter Note-Taking App\n\nA simple and clean note-taking application built with Flutter and Dart. This app allows users to add, update, and delete personal notes. The data is stored locally using SQLite.\n\n## 🧪 Screenshots\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/user-attachments/assets/b88db8da-dd1d-4d47-8ebb-9ff2e1a3c5d7\" width=\"30%\"\u003e\n  \u003cimg src=\"https://github.com/user-attachments/assets/37bfeb17-9ec1-4b01-8a00-a807ab4aeb9f\" width=\"30%\"\u003e\n  \u003cimg src=\"https://github.com/user-attachments/assets/6612c714-3f74-4589-96b5-3d9724153dc4\" width=\"30%\"\u003e\n\u003c/p\u003e\n\n\n\n## 📱 Features\n\n- Add new notes with title and content\n- Edit existing notes\n- Delete unwanted notes\n- Simple and minimal user interface\n- Local data storage using SQLite\n\n## 🛠️ Tech Stack\n\n- **Flutter** (UI Toolkit)\n- **Dart** (Programming Language)\n- **SQLite** (Local Database using sqflite package)\n\n## 📁 Project Structure\n\nThe main Dart files used in this project:\n\n### `main.dart`\n\nThe entry point of the app. It initializes the main UI and routes to the `NotePage`.\n\n### `note_page.dart`\n\nThis is the main screen of the app that displays the list of notes. It handles:\n- Fetching notes from the database\n- Displaying them in a `ListView`\n- Adding or updating notes through a dialog\n- Deleting notes with a delete button\n\n### `note.dart`\n\nA simple `Note` model class that represents a note item with an optional `id`, a `title`, and `content`. It also includes:\n- `toMap()` method for converting the object to a Map for SQLite\n- `fromMap()` factory constructor for reconstructing a Note from a Map\n\n### `database_helper.dart`\n\nHandles all database operations including:\n- Initializing and creating the database\n- Inserting new notes\n- Reading all notes\n- Updating existing notes\n- Deleting notes\n\n✅ **Important:**  \nThese Dart files are part of a complete Flutter project. Make sure to place them in the proper directories within your Flutter project (e.g., inside `lib/`).\n\n## 📦 Dependencies\n\nAdd the following dependency to your `pubspec.yaml`:\n\n```yaml\ndependencies:\n  flutter:\n    sdk: flutter\n  sqflite: ^2.0.0+3\n  path: ^1.8.0\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasoudjawnf%2Fflutter-note-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmasoudjawnf%2Fflutter-note-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasoudjawnf%2Fflutter-note-app/lists"}