How do make like this slider widget in flutter? - flutter

I have a task,
and i need to build like this slider.
can anyone help me?
i try use alot of packeges but i didn't get the same result of picture

api.flutter.dev/flutter/material/RangeSlider-class.html

Related

How to create a slider which should be returned to starting position when user stop dragging and need to call method when it completes full in flutter

In flutter i tried with sliderTheme and slider widget but the it is working as a seek bar not as a draggable slider.
Any idea or widgets would be helpful.
Thanks in advance.
try to use slider_button i think this package is fit your requirement very well https://pub.dev/packages/slider_button

How to show timeline like a grid view in flutter

I'm trying to create a timeline grid in my flutter event app to display different events with their time.
If you have any idea about how to implement this widget in flutter please help me. Any suggestion or solution will be appreciated.
Thanks

Flutter Dropdown slider from Appbar

I want to archive some kind of dropdown look like the image. I tried to find but I don't get any.
Please help.
Thank you!
You can use the Visibility Widget . You put it on top and hide it until you need it
https://api.flutter.dev/flutter/widgets/Visibility-class.html

Is there an easy way to implement Bottom player in flutter?

Is there any easy way to implement bottom player in flutter?
I have tried with the Bottom navigation bar along with the routing, But that doesn't work,
So Can anybody please help me to sort it out?
Thanks in advance.
You can use BottomSheet class or if you want to use an external package there is a package called sliding_up_panel. You can place you player inside these components.

Flutter SliverAppBar similar of iPhone Google Maps

I try to implement in Flutter a similar Google Maps AppBar using CustomScrollView and SliverAppBar with an flexibleSpaceBar, but I don't found any option to display an widget only on "opened" state of AppBar.
The representation of result pretended is this:
Opened View
Bar View
After try develop this, I don't have success.
Any idea how to make this?
UPDATE
The needed effect is visualized in that gif:
via GIPHY
Hi, I think you are looking for something like this.
if yes, you can find the code in flutter gallery app.
Hope it helps :)