Questions tagged [stepper]

217 questions
17
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
  • 395
  • 3
  • 8
11
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,560
  • 9
  • 55
  • 80
9
votes
3 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
  • 439
  • 4
  • 10
  • 22
7
votes
3 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
  • 4,069
  • 12
  • 57
  • 101
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
  • 2,872
  • 3
  • 22
  • 47
4
votes
5 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…
4
votes
0 answers

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…
4
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…
4
votes
1 answer

how to run a 5v stepper motor on jetson nano

I tried running a 5v stepper motor using RPI code on jetson nano and it gives me ValueError: The channel sent is invalid on a JETSON_NANO Board I have installed jetson gpio and still giving me same error but the code works fine on raspberry…
4
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,040
  • 14
  • 47
  • 69
4
votes
1 answer

Animate while setBackgroundColor in android

I'm working on a custom stepper. Everything is working fine. What I want to do now is animate the stepper while filling the current step. this Image shows my idea: This is my code while setting the color of the line, title, and the icon…
Abdulrahman
  • 251
  • 1
  • 3
  • 11
3
votes
1 answer

Angular Material Stepper prevent Step forward if some condition is true

I am wondering how I can skip a step change in Angular Material Stepper. Every "solution" I see, are not working. I tried also to set the steps regarding on some conditions to editable=false. But this means, that the step cannot edit if it is…
Buzz
  • 131
  • 2
  • 14
3
votes
1 answer

How to implement a stepper decision flow in JavaScript?

I'm not actually sure of the best name for what I'm trying to describe. Decision flow, decision matrix, flow chart... What is the best way to implement a flow that is basically a "Choose Your Own Adventure" stepper, or a flowchart turned into a…
Tania Rascia
  • 1,142
  • 9
  • 26
3
votes
2 answers

Flutter Stepper horizontal type not working

I have a problem with changing the Stepper type from vertical to horizontal. This is my code: body: new ListView.builder( itemCount: data == null ? 0 : 5, itemBuilder: (BuildContext context, int index) { return new Card( …
harunB10
  • 2,927
  • 8
  • 42
  • 75
3
votes
1 answer

In Flutter' Stepper, how to put the title of the Step below the counter?

If use the Stepper in horizontal mode, I get the following result. However, I want the title of the Step to appear below the counter. How can I achieve that in Flutter?
GianMS
  • 663
  • 10
  • 20
1
2 3
14 15