UPressable constructor
const
UPressable({
- required Widget child,
- required VoidCallback onTap,
- Key? key,
- double pressedScale = 0.9,
- Duration duration = const Duration(milliseconds: 120),
Implementation
const UPressable({
required this.child,
required this.onTap,
super.key,
this.pressedScale = 0.9,
this.duration = const Duration(milliseconds: 120),
});