Questions tagged [stepper]

Software for managing microcontroller input and output for controlling stepper motor hardware; To be used together with the platform tag.

Steppers are very precise motors that give a very precise control on their rotation. The full rotation is divided into steps and the driver circuit of the motor allows to execute commands that precisely move the motor by a given number of steps, in a given direction and at given speed.

Use this tag exclusively for software-related questions such as:

  • stepper control code
  • libraries controlling steppers
  • producing/processing I/O related to steppers

Use this tag in combination with the hardware environment, such as or .

More information:

297 questions
20
votes
1 answer

A simple example of using the stepper in SBCL

Going through the computation with the LispWorks stepper is rather intuitive, but I cant figure it out in SBCL. Can somebody please give me a step-by-step example of how to use the SBCL stepper in the REPL on some simple function? Thanks.
muuh-gnu
  • 415
  • 4
  • 8
13
votes
11 answers

Flutter - Change Stepper - Step Color

Is there a way to change the color of the Steps without creating a custom Stepper? the current step is blue. https://docs.flutter.io/flutter/material/Stepper-class.html https://docs.flutter.io/flutter/material/Step-class.html
jbvvb
  • 143
  • 1
  • 1
  • 6
12
votes
1 answer

Disable animation of mat-stepper while in transition

Is there any way to disable animation of Angular material's mat-stepper control, when we are switching from one step to another ?
Sreekumar P
  • 5,900
  • 11
  • 57
  • 82
11
votes
1 answer

how to use TextEditingController from Autocomplete widget Flutter

I need to use TexteditingController of the widget "autocomplete". is to use the clear function when a stepper changes stage I need to do that since if I go back a stage the text entered previously remains this is the autocomplete…
Adolfo Martinez
  • 111
  • 1
  • 3
10
votes
4 answers

Stepper Pure HTML CSS

I'm confused about a progress bar that I have created. I want the progress bar to change its background color to blue after setting the class to “active”. But I want the progress bar to change its background color before the class is set to…
dedi wibisono
  • 511
  • 5
  • 12
  • 23
10
votes
4 answers

How to remove the transition effect from the VuetifyJS Vertical Stepper?

Is it possible to show the next step directly after clicking continue within the Vuetify Stepper? (or in other words: how to remove the transition slide out effect)
Tom
  • 5,588
  • 20
  • 77
  • 129
8
votes
1 answer

Manage multiple form (validation) in stepper flutter

I have multiple form in each step of a Stepper, Form are in external file because in my App each Step can contain a different Form. I want that when user click on "Continue" the form will be validated and in an error situation the user will be…
Jerry Palmiotto
  • 97
  • 1
  • 1
  • 8
7
votes
4 answers

Strange Behavior of Stepper in SwiftUI

I want to use the Stepper view in manual (not binding) mode using onIncrement and onDecrement. There's a strange behavior when I try to implement lower and upper bounds, eg. having an age value not going bellow 1 or above 10. If you try the bellow…
G. Marc
  • 4,987
  • 4
  • 32
  • 49
7
votes
2 answers

Flutter - How to fill remaining space in Stepper controls builder?

In the screenshot, I want to get the next and back buttons to the bottom of the screen. The stepper has a parameter, controlsBuilder that allows you to build out the layout for the controls. If it's just a simple row, It's placed right underneath…
ShrimpCrackers
  • 4,388
  • 17
  • 50
  • 76
6
votes
1 answer

Importing only one component from Material UI

need a Stepper component from somewhere and the only adequate one I found was the MUI one. But my app uses react-bootstrap and I don't have it. In this post (Is it possible to install a package that contains only one component of Material-UI? ) the…
Dimitar Nizamov
  • 145
  • 1
  • 8
6
votes
1 answer

Flutter Stepper Vertical/Horizontal Overflow

I have Stepper more then 3 Steps. Stepper Working Properly Vertical direction but when i switch Horizontal with FloatingActionButton then Overflow Pixel. Attached ScreenShot:- My Code:- import 'package:flutter/material.dart'; class StepperEx…
MohammedAli
  • 2,361
  • 2
  • 19
  • 36
5
votes
7 answers

Horizontal Stepper in Flutter

I want to create a horizontal stepper, which is easy I know, but this time, the count of steps should large. Just to give an example, this is what I am doing for the vertical, import 'package:flutter/material.dart'; void main() => runApp(new…
5
votes
1 answer

Angular Material Vertical Stepper | Extend vertical line in last step

Is it possible to extend the vertical line in the last step? The template script prevents it:
This is what it is now in the last step: This is…
5
votes
3 answers

flutter stepper widget - validating fields in individual steps

i am using stepper widget in order to collect info from user and validate it, i need to call an API at each step hence validate each field in a step at every continue button ... i am using form state and form widget but the issue is that it…
Sana.91
  • 1,999
  • 4
  • 33
  • 52
4
votes
2 answers

SwiftUI Stepper puts "." in Integers

Stepper(value: $year, in: 2018...2025){Text("Year: \(year)")} Displays as Year: 2.200 thousand-point with the thousand-point. How can this thousand-point be avoided?
mica
  • 3,898
  • 4
  • 34
  • 62
1
2 3
19 20