Ahmed Tarek
Ahmed Tarek
Awesome! As you see in the root project, RichPath has two modules: 1. animator 2. richpath I would say you can start by the smaller one (you can break it...
we have `/richpath/src/main/java` and `/animator/src/main/java` so you need to create a new source directory for kotlin for each module like the following: `/richpath/src/main/kotlin` `/animator/src/main/kotlin`
Hi :) Great progress 👍 You shouldn't have duplicate classes, You should remove any Java class you converted to Kotlin, or what duplicates you have? Regarding the second point, please...
Hi @step4me sorry for the late reply, Yes, if you already converted some classes don't hesitate to create a PR then we can discuss easily on it.
A new PR: https://github.com/tarek360/RichPath/pull/60
@step4me cool! go on 👍 I fixed it after many hours trying to find where is the problem :D actually [`repeatMode` and `repeatCount`](https://github.com/tarek360/RichPath/pull/55/files#diff-2503c785024291f403b109b2ad1afd6aR13-R14) were private properties but you didn't make...
I like your suggestions, I will be more than happy if you created a pull request for each feature. On Tue, 5 Mar 2019, 6:53 PM Anish Kumar, wrote: >...
Hi, @anishkumar11 where is that pull request? @AmineLAHRIM could you explain more about your use case? do you need to zoom at the level of the path or the view?
@AmineLAHRIM cool, you have figured where the problem with a zoom view, are you able to fix that in RichPathDrawabl? What exactly is going wrong in RichPathDrawabl?
@AmineLAHRIM I checked it and I found that [TouchImageView.java](https://gist.github.com/Antarix/65cfc180c05524ce616f ) is an ImageView but in your case, you need a ViewGroup, you need a layout to wrap the RichPathView to...