Skip to content

In this project, basically I had referred to a medium tutorial where we had learnt about the Hive Database Fundamentals and also learnt about the Dart Language specific such as Stateless/Stateful/Keys for the Project.

irahulcse/Notes-App-For-Mobile-App-using-Hive-Database

Repository files navigation

Image

Flutter Notes Application using Hive Database 💥

Flutter notes application is a kind of the application which can be used to fetch the data which is using the Hive as the database.

Show some love ❤️ and star the repo to support the project

If you had like the project pls hit the star 👍 icon.

The Parent Repository of this project can be found on this link.

Created with ❤️

I am Rahul Chandra, A a Pre-Final Year Computer Science Student, an experienced Software Developer with a demonstrated history of working in the information technology and services industry. Seasoned Competitive Coder. Skilled in C++, Python, Data Analysis, Java, Dart and Julia. Strong information technology professional with a Bachelor of Engineering - BE focused in Computer Science from Chandigarh University.

I am currently looking for Full Time/ Internship Offer for any Software Development Roles. Pls, checkout my Resume. I am very passionated about Software Development ❤️

Testing

Testing of the Project is Done ✔️

Basic Workflow/If you want to contribute to this project:

You can follow the below workflow, if you are new to Git.

Initial setup

  1. Fork the main A-Complete-Guide-To-Flutter
  2. Clone this repo on your machine
  3. Add the main repo as "upstream"
  • git remote add upstream https://github.com/irahulcse/A-Complete-Guide-To-Flutter

Starting a new issue

  1. Get the latest version of the project
  • git fetch upstream
  • git checkout master
  • git pull upstream master
  1. Create a new branch starting from that newly updated main branch, and link it to your GitHub fork.
  • git checkout -b MyNewIssue
  • git push --set-upstream origin MyNewIssue
  1. Make your changes, commit them, and push them to your fork
  • make changes
  • git commit -a
  • write a good commit message
  • git push

Rebasing your branch

When there have been changes in the main repo that you want to get, the cleanest option is often to rebase your branch on top of the latest commits.

  1. Get the latest commits and update your local master branch
  • git fetch upstream
  • git checkout master
  • git pull upstream master
  1. Rebase your in-progress feature branch
  • git checkout MyInProgressFeature
  • git rebase master
  • git push -f

Resetting a branch after you've messed it up

  1. Make sure there isn't any work that you care about losing
  2. Do a hard reset to the branch you want to restart from.
  • git checkout MyMessedUpBranch
  • git reset --hard upstream/master

Adding a single commit from one branch to another branch

  1. Find and copy the commit ID that you want to use
  2. Cherry-pick that commit
  • git checkout MyCleanBranch
  • git cherry-pick COMMIT_ID

Getting Started

For help getting started with Flutter, view our online documentation.

Contribution:

Please clone and star this repo to stay up to date on changes. If anyone, would like to contribute to it. You can open the issue and start contributing to it.

License

Copyright (c) 2020 Rahul Chandra

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

In this project, basically I had referred to a medium tutorial where we had learnt about the Hive Database Fundamentals and also learnt about the Dart Language specific such as Stateless/Stateful/Keys for the Project.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published