RunnerStatusAppBar constructor

const RunnerStatusAppBar({
  1. Key? key,
  2. required WorkoutRunnerController controller,
  3. DurationFormatter? format,
  4. bool showExerciseTimer = true,
  5. bool showSetTimer = false,
  6. bool centerTitle = false,
  7. List<Widget>? actions,
  8. Widget? leading,
  9. double height = kToolbarHeight,
  10. String? fallbackTitle = 'Workouts',
})

Implementation

const RunnerStatusAppBar({
  super.key,
  required this.controller,
  this.format,
  this.showExerciseTimer = true,
  this.showSetTimer = false,
  this.centerTitle = false,
  this.actions,
  this.leading,
  this.height = kToolbarHeight,
  this.fallbackTitle = 'Workouts',
});