Can some one help me with custom stepper in flutter - flutter

I have to implement a customer stepper which looks some thing like this....I have done a stepper with out a circle using containers and color,,Now i have to redo the stepper with the right mark can some one helpme to implement 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 make a stepper like in image in flutter

How can I achieve this kind of stepper as shown in the image? I have tried the stepper widget and some packages but was unable to achieve that
You can use package status_change 2.0.0 to achive this view
Here is the example for horizontal view

Flutter Progress Text Button

Looking for a widget similar to the answer by NiklasPor in this question here. The whole idea fits my needs - have a button that changes border drawn based on how long the button is held. The problem is that the CircularProgressIndicator is used here. I need on hold feature and border drawing to be compatible with the TextButton widget, for example. Basically, I want a TextButton to execute a function if it is held long enough. Any ideas how to start with this? I am thinking of also using the GestureDetector widget.
Have you tried this package: square_percent_indicator

How to create hover button in flutter

Id like to create similar animation effect with press button in flutter like this
I tried to find some similar widget on https://pub.dev/ without success. Any Idea how to create it?
Use materialappbutton to get hover animation effect.
The only thing I can think of is working with a gradient which you adapt in a stateful way on hover.
See the below answer for how to make a gradient border:
Outlined transparent button with gradient border in flutter

How to Implement Multi-Layer Circular ListView in flutter?

I want something like this:
Circular ListView Example
But, I have been looking everywhere and can't find someway to do so in flutter, is it possible? if not in what framework or language, is this possible?
Note: Already Tried This How to create circular ListView in Flutter It doesn't spin nor it can I select any of the items, so generally it doesn't work