See also: siri_wave's code of conduct
First off, thanks for taking the time to contribute!
The following is a guideline for contributing to siri_wave. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
Make sure you have Flutter installed and on your path.
Follow these steps to clone siri_wave and set up the development environment:
- Clone the project:
git clone https://github.com/halildurmus/siri_wave.git
- Go into the cloned directory:
cd siri_wave
- Install all packages:
flutter packages get
If the work you intend to do is non-trivial, it is necessary to file an issue before starting writing your code. This helps us and the community to discuss the issue and choose what is deemed to be the best solution.
After you have made your changes, you have to make sure your code works correctly and meets our guidelines. Our guidelines are:
- Make sure the code passes the tests. To run tests, run
flutter test
. - Make sure to run
flutter analyze
and resolve any warnings or errors. - The code should be formatted correctly. To format your code you can run this
command inside the project from the command line:
flutter format
.
Congratulations! Your code meets all of our guidelines. Now you have to submit a pull request (or PR for short) to us.
These are the steps you should follow when creating a PR:
- Make a descriptive title that summarizes what changes were in the PR.
- Link to issues that this PR will fix (if any).
- If your PR adds a feature or fixes a bug, it must add one or more tests.
- Change your code according to feedback (if any).
After you follow the above steps, your PR will hopefully be merged. Thanks for contributing!