-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support stroke width in API or have better internals to support Kotlin #83
Comments
There are several issues with supporting a stroke width:
All in all, I'm kinda unsure how to expose it as an API of this library. |
Any update on this issue with newer version |
I personally wrote a custom component to fit the need. Issue could probably be close, even if allowing easier customization from Kotlin would be a nice addition. |
Currently the library does not support stroke width and you said you do not want to implement it. (#61)
The problem is that the current code is filled with protected / private constructors and prevent expanding the library from Kotlin to implement this.
In Java it's relatively simple to achieve, in Kotlin we need to copy and convert 90% of the code :(
To see the issue just convert:
to kotlin and see all the errors about package private / protected :(
This is not cool to have to maintain java code in a full kotlin project just for this use case :(
The text was updated successfully, but these errors were encountered: