Skip to content

Latest commit

 

History

History
68 lines (55 loc) · 2.73 KB

File metadata and controls

68 lines (55 loc) · 2.73 KB

Contributing

Forks Open Issues Closed Issues Open PRs Closed PRs

Contributors

Last Commit (development)

Current Roadmap

  • Tailwind palette
  • Carbon design system
  • Ant design system
  • Chakra UI
  • Material Design 3
  • Dedicated library or singleton for Jetpack compose?

How to Contribute

Contributions are always welcome — whether it’s fixing bugs, improving documentation or adding new color systems.

  1. Make a fork of this repository
  2. Create a new branch for your changes
  3. Commit your work with clear, concise messages
  4. Open a Pull Request against the development branch

We’ll review, discuss, and merge after feedback.


Issues

  • Before opening an issue, please check if a similar one already exists.
  • If a closed issue still persists, feel free to reopen or create a new one.
  • For bug reports, include as much detail as possible (logs, screenshots, test cases, minimal reproductions).

Code Style

Consistent indentation plays an important role in readability and maintainability of code.

✅ Correct indentation:

fun correctIndent() {
	doSomethingHere {
		val x = "some string var"
	}
}

❌ Wrong indentation:

fun inCorrectIndent() 
{
	doSomethingHere 
	{
		val x = "some string var"
	}
}

Please follow the correct indentation style before submitting a pull request.