AnimatedToggle constructor
const
AnimatedToggle(- {required void onSwitch(
- bool
),
- required Widget childLeft,
- required Widget childRight,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.center,
- bool initialState = false,
- Color toggleColor = Colors.yellow,
- BoxDecoration? decoration,
- double width = 320,
- Duration duration = const Duration(milliseconds: 300),
- EdgeInsetsGeometry padding = const EdgeInsets.symmetric(vertical: 15),
- 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,
});