Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1017 Bytes

CONTRIBUTING.md

File metadata and controls

32 lines (20 loc) · 1017 Bytes

Please review our Contributing Guidelines for detailed instructions on contributing to Flutter Bond. We encourage contributions in the form of bug fixes, new features, and improvements to the codebase.

Code Style

We follow the coding guidelines outlined in the Flutter Style Guide. Consistent code style helps maintain readability and collaboration.

Submitting a Pull Request

When you're ready to submit your contribution:

  1. Create a New Branch: Create a new branch for your changes:

    ```bash git checkout -b your-branch-name ```

  2. Make Changes and Commit: Make your changes, commit them with a meaningful message:

    ```bash git add . git commit -m "Your detailed commit message" ```

  3. Push to Your Fork: Push your changes to your forked repository:

    ```bash git push origin your-branch-name ```

  4. Open a Pull Request: Visit the original Flutter Bond repository and open a new pull request. We'll review your changes and provide feedback. EOF