{"id":32724793,"url":"https://github.com/sanaz-all/flutter-note-app","last_synced_at":"2026-04-13T01:17:34.985Z","repository":{"id":321794146,"uuid":"1087189859","full_name":"sanaz-all/flutter-note-app","owner":"sanaz-all","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-31T14:14:33.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-31T16:10:07.166Z","etag":null,"topics":["android","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/sanaz-all.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-31T14:10:28.000Z","updated_at":"2025-10-31T14:50:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sanaz-all/flutter-note-app","commit_stats":null,"previous_names":["sanaz-all/flutter-note-app-main"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/sanaz-all/flutter-note-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanaz-all%2Fflutter-note-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanaz-all%2Fflutter-note-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanaz-all%2Fflutter-note-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanaz-all%2Fflutter-note-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sanaz-all","download_url":"https://codeload.github.com/sanaz-all/flutter-note-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sanaz-all%2Fflutter-note-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31735970,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T22:19:12.206Z","status":"ssl_error","status_checked_at":"2026-04-12T22:18:33.088Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["android","dart","flutter","notetakingapp","object-oriented-programming","oop"],"created_at":"2025-11-03T01:01:11.858Z","updated_at":"2026-04-13T01:17:34.977Z","avatar_url":"https://github.com/sanaz-all.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 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### 🤝 Contributors\n- [SanazAllahyari](https://github.com/Sanaz-all)\n- [MasoudJanfashan](https://github.com/masoudjawnf)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanaz-all%2Fflutter-note-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsanaz-all%2Fflutter-note-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanaz-all%2Fflutter-note-app/lists"}