Ahmed Tarek

Results 57 comments of Ahmed Tarek

sorry, it's a too late reply, if you fixed it please feel free to create a PR to fix if you have some time.

@selmantsn No, RichPath doesn't read SVG, you need to convert your SVG to the VectorDrawable format! Then, you need to save your VectorDrawable in the resources! It's easy to convert...

I will try that on several devices maybe I can reproduce it, I think you can consider your work around a right solution for the current state. Thank you for...

@rmasarovic I noticed that glitch only with `strokeLineCap="round"` and `trimPathEnd="0"` if you don't need `strokeLineCap="round"` remove it, and I will investigate that issue, thanks.

You could use, `trimPathOffset()` like below, ```kotlin RichPathAnimator .animate(yourPath) .trimPathOffset(0f, 1.0f) .start() ``` and don't fill `yourPath` it should have a `strokeWidth` and `strokeColor`, like this: ```xml ``` **Note:** there...

Unfortunately, it's impossible to get exactly that flow animation you mentioned above by using RichPath but you could get a trimming path animation like the example I posted above.

You can find a [similar line of code](https://github.com/tarek360/RichPath/blob/develop/app/src/main/java/com/richpathanimator/sample/AnimationSamplesActivity.java#L41) in the sample and everything work fine, so please provide more details about your issue.

Hi, this is a feature I think we may support, but I don't have a plane to do that soon, but feel free to open a PR with that nice...

@alpesh031 just set your custom size in the vector drawable xml file, like this: ```xml

@mahmutadana could you provide a full example, please?