StepsScreen constructor

StepsScreen({
  1. Key? key,
  2. List<Widget>? widgets,
  3. Color activeColor = const Color.fromARGB(255, 184, 154, 67),
  4. Color inactiveColor = Colors.blueGrey,
  5. VoidCallback? onFinish,
  6. String nextButtonText = 'Next',
  7. String finishButtonText = 'Finish',
  8. double borderRadius = 0.0,
  9. List<Icon>? stepIcons,
})

Implementation

StepsScreen({
  Key? key,
  this.widgets,
  this.activeColor = const Color.fromARGB(255, 184, 154, 67),
  this.inactiveColor = Colors.blueGrey,
  this.onFinish,
  this.nextButtonText = 'Next',
  this.finishButtonText = 'Finish',
  this.borderRadius = 0.0,
  this.stepIcons,
}) : super(key: key);