Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.62 KB

CONTRIBUTING.md

File metadata and controls

29 lines (23 loc) · 1.62 KB

Contributing

We welcome contributions to this repository. Please follow these steps if you're interested in making contributions:

  1. Please familiarize yourself with the process of running the example app.

  2. Ensure that existing pull requests and issues don’t already cover your contribution or question.

  3. Create a new branch that will contain your contributed code. Along with your contribution you should also adapt the example app to showcase any new features or APIs you have developed. This also makes testing your contribution much easier. Eventually create a pull request once you're done making changes.

  4. If there are any changes that developers should be aware of, please update the changelog once your pull request has been merged to the master branch.

Contributing

  • Increase the version number in pubspec.yaml according to semantic versioning.
  • Update CHANGELOG.md with the new version number and changes.
  • Run the following commands to format and analyze the code:
dart format . && dart fix --apply && flutter analyze 

Make sure that all tests are passing before submitting a pull request.

No issues found! 
  • Commit your changes and open a pull request.

  • If you are a maintainer, you can publish the package to pub.dev by running the following command:

flutter pub publish

Release