A new flutter package for any flutter widgets to add touch ripple effect and touch feedback.
find package on pub.dev
1 ) open pubspec.yaml file in project dir and write touch_ripple_effect: at below cupertino_icons.
pubsec.yaml:
touch_ripple_effect: 2.2.4
2 ) open command prompt in project dir and run
Command Line:
flutter pub get
properies | details | default value | required |
---|---|---|---|
width | TouchRippleEffect widget width size | null | false |
height | TouchRippleEffect widget height size | null | false |
child | child widget in which you want to apply Touch Ripple effect | null | true |
rippleColor | color thats you want to see as a ripple effect | null | true |
onTap | Listen onTap or click of child Widget | null | false |
awaitAnimation | Await the animation to complete onTap | true | false |
rippleDuration | how much time take to display ripple effect | 300 milliseconds | false |
backgroundColor | background color of TouchRippleEffect | transparent | false |
borderRadius | border radius of TouchRippleEffect widget | null | false |
properies | details | default value | required |
---|---|---|---|
child | child widget in which you want to apply Touch Ripple effect | null | true |
rippleColor | color thats you want to see as a ripple effect | null | true |
onTap | Listen onTap or click of child Widget | null | false |
feedbackDuration | how much time take to display ripple effect | 300 milliseconds | false |
backgroundColor | background color of TouchRippleEffect | transparent | false |
borderRadius | border radius of TouchRippleEffect widget | null | false |