Hand held camera-wiggle effect on flutter - 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/

Related

Drag a container vertically up and down to a certain level flutter

I am new to gestures and I don't get any proper solution for achieving my request,
Can anyone help me in dragging a container up and down vertically to a certain point?.
I need to achieve something like the below image.
Thanks in advance.
Consider using draggable home if you want a ready-made similar effect.
If you want to replicate the goggle maps UI one-on-one, consider reading DraggableScrollableSheet and make one your own.
Hope it helps!

How to display some widgets slowly one by one in flutter?

I want to display some text and containers one by one slowly as shown in the below gif. I tried in list view also but could not achieve it. If anyone has any ideas could you suggest me?.
For this particular example in the video, you can use the flutter_staggered_animations package.

How can I add physics animations to a Flutter app

I’m trying to add an effect on a series of containers where they constantly move around a phone screen. This is similar to what is shown below, however they need to be able to bounce off each other too.
Has anyone tried something like this before and can point me on the right direction please? Worth noting that I need the containers to be widgets and so can’t just use a video.
Thanks a lot!

Circular Slider/progressBar in 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.

Flutter Custom Graphics

I'd like to create something like this in Flutter. That gradient green line in a circle that looks like a progress indicator. The circle remains stills but spins sometimes.
Any ideas on where to start or are there libraries out there to help me out?
you can use https://www.2dimensions.com/, its a website for building very complex animations the can be exported to flutter.
and theres https://lottiefiles.com/ which pretty much does the same
there both very good and supply what you need