Welcome to the Notes App! This application allows users to create, manage, and organize notes efficiently. It’s built with Flutter, making it compatible across various platforms. Whether you're participating in Hacktoberfest or just looking for a notes app, we’re glad you’re here!
Before you begin, ensure you have the following installed:
Download Flutter SDK: Visit the Flutter installation page and download the latest stable release.
Extract the zip file: Open your terminal and run:
cd ~/Downloads
unzip flutter_macos_<version>.zip
Move Flutter to a desired location:
mv flutter /Users/<your-username>/development
Update your path:
Add the following line to your ~/.zshrc
or ~/.bash_profile
:
export PATH="$PATH:/Users/<your-username>/development/flutter/bin"
Then run:
source ~/.zshrc
Run Flutter doctor:
flutter doctor
Follow any additional instructions to complete the setup.
Download Flutter SDK: Visit the Flutter installation page and download the latest stable release.
Extract the tar file: Open your terminal and run:
cd ~/Downloads
tar xf flutter_linux_<version>.tar.xz
Move Flutter to a desired location:
sudo mv flutter /usr/local/flutter
Update your path:
Add the following line to your ~/.bashrc
or ~/.profile
:
export PATH="$PATH:/usr/local/flutter/bin"
Then run:
source ~/.bashrc
Run Flutter doctor:
flutter doctor
Follow any additional instructions to complete the setup.
Clone the repository:
git clone https://github.com/yourusername/notes-app.git
cd notes-app
Get dependencies:
flutter pub get
Run the app:
flutter run
We welcome contributions! Please follow these steps:
git checkout -b feature/YourFeature
).git commit -m 'Add some feature'
).git push origin feature/YourFeature
).This project is licensed under the MIT License. See the LICENSE file for details.
Happy coding, and thanks for contributing to the Notes App during Hacktoberfest! 🎉