Flutter Custom Horizontal Slider - flutter

I want to make a Slider with customized lines with Flutter.
In a section where users choose distance,
It should have lines 0-15-50-500. Is there a way to this?

Related

How to make stepper in flutter like this

I want to make a stepper similar to the above. However, Flutter doesn't have padding or margin to set position. How can I make such a stepper?
You can use this package: another_stepper
You can create a list of your steps and then you can directly make stepper in horizontal and vertical direction with ease.

How to create overlapping header in flutter?

I'm kinda new to Flutter and I am trying to build a home page where the header is at the back of the main content. So when the app is scrolling, the content in front is overlapping the header.
Like this
The main goal I want to achieve is overlapping scrolling. But it's nice if I can make the status bar color and the border radius changes when I scroll up the content, but I guess it's kinda advanced?
Can I user SliverAppBar to make it works like that? or are there any plugins for that?
Thank you
You can use Draggable Scrollable Sheet for this with min height of 0.7 to 0.8.
https://api.flutter.dev/flutter/widgets/DraggableScrollableSheet-class.html

how to add Alternate labels in Flutter Stepper?

Is there a way to add alternate labels to the stepper in flutter, as shown below.
https://material.io/archive/guidelines/components/steppers.html#steppers-types-of-steppers

change theme of DatePickerTimeline Flutter

I am new to Flutter. I am using DatePickerTimeline package (https://pub.dev/packages/date_picker_timeline) . I want to change theme of my DatePicker widget. In first picture you will see what I achieved. But I want my custom design like adding color to border to boxes.
This is the first picture
In the second picture you will see what I want to do. And I would like to ask can I make half box like in second picture
Second picture

Is there any Possibility to customize a Flutter Slider?

I want to Add Flutter slider in My Cricket App(App For Live Score Cricket). Is there any Possibility to customize a Flutter Slider?
if then what will be?
There are several things that can easily be customized in Slider. I would suggest playing around with in on DartPad and try the activeColor and inactiveColorproperties, and wrapping it with a SliderTheme. The SliderTheme allows you to define custom SliderThemeData:
This theme is for both the Slider and the RangeSlider. The properties that are only for the Slider are: tickMarkShape, thumbShape, trackShape, and valueIndicatorShape.