AnimatedToggle constructor

const AnimatedToggle(
  1. {required void onSwitch(
    1. bool
    ),
  2. required Widget childLeft,
  3. required Widget childRight,
  4. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
  5. bool initialState = false,
  6. Color toggleColor = Colors.yellow,
  7. BoxDecoration? decoration,
  8. double width = 320,
  9. Duration duration = const Duration(milliseconds: 300),
  10. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 15),
  11. Key? key}
)

Implementation

const AnimatedToggle({
  required this.onSwitch,
  required this.childLeft,
  required this.childRight,
  this.mainAxisAlignment = MainAxisAlignment.center,
  this.initialState = false,
  this.toggleColor = Colors.yellow,
  this.decoration,
  this.width = 320,
  this.duration = const Duration(milliseconds: 300),
  this.padding = const EdgeInsets.symmetric(vertical: 15),
  super.key,
});