Circular Slider/progressBar in flutter - flutter

I want to implement a circular slider for a music player.
but the packages like sleek_circular_slider (https://github.com/matthewfx/sleek_circular_slider) and other packages like this are not suitable .
means for example the package above is very good in change the position but it is not possible to use it as a progressBar to show currently music duration.
I want a circular slider like default flutter Slider.
because it has both onChanged method and value property which is responsible for currently position.
but unfortunately I think there is not package in flutter to have both parameters.
Thanks .

Faced with the similar challenge, I ended up creating a custom flare animation. The progress can then be set by the animation controller to any frame.

Related

How to make this type of Animation in flutter?

Above the image to below the animation.
How to Extract the single part of the image element in flutter then make to below animation.
How to achieve this type of animation in flutter. It was done by CSS. I was working to make this type of animation but I need some Suggestions and Example. If you know please share your experience and knowledge for achieve this.
You must have the SVG file of each of the gears and use the Rotation Transition Widget and stack Widget for Rotation and use AnimatedContainer for wieght

Hand held camera-wiggle effect on flutter

I looking for an animation loop on flutter that will do something like that:
https://www.youtube.com/watch?v=hBCBAbR-B5w
The idea is to display a List View where every item wiggles around in a confined space.
Is there any package for that on flutter? Any guidance to do it manually if not?
Thank you!
Try
Package https://pub.dev/packages/shake_widget
Or
Custom animation
https://codewithandrea.com/articles/shake-text-effect-flutter/

flutter how to make electrical-like animation

I have a gif demonstrating electrical-like animation
The full gif is here: https://pin.it/3RGDs7W
Anyone knows how can implement this kind of animation on Flutter or I have to have a sequence of images to animate it
The most feasible method is to use this gif in Stack below the button. Creating an animation like this is very difficult and also it will decrease the screen FPS and consume more resource. The other way I can think of is creating this animation on rive.app but this will also take a very long time and you will have to learn how to create animations on rive.

How to draw an animated logo using dart flutter as a splash screen

I am trying to create a dynamic logo using as a splash screen using dart flutter as the below image
So as the previous image this shield logo there's a way to create it dynamically using dart-flutter as to able to animate it easily as dragable those small squares in the shield logo...
There's a tutorial or docs related to this case could help me...
I hope this would be clear enough..
If there is no user interaction then you could use
Lottie animation or else if you want to have a user interaction with the animation to it then you could do like
ColorFiltered with the position
Update the state of the position from drag/click position

Is there any way to make slider widget circular in shape?

I want to create a knob like slider so that i can increase the volume in my app. But the problem i am facing is it's by default linear in shape.
Instead of painting it, is there any work around.
I would recommend using sleek_circular_slider package from pub.dev. It is much easier than drawing and creating custom slider from scratch