v2.0.0spring_button
一個簡單的 widget,用於包含對手勢做出反應的彈簧動畫的子 widget。
一個簡單的 widget,用於實現點擊時帶有彈簧動畫效果的 UI 元素。
以下為英文專案原文快照,最新內容請造訪 GitHub。
A simple widget for having child widgets that respond to gestures with a spring animation.
Media | Description | How-to-Use
Watch on Youtube:
v1.0.0
https://www.cosmossoftware.coffee/Common/Portfolio/GIFs/FlutterSpringButton.gif
This is a simple widget for having child widgets that respond to gestures with a spring animation.
It is more of an extension to the GestureDetector widget than an original new widget.
Simply create a SpringButton as shown in the example:
SpringButton(
SpringButtonType.OnlyScale, //springButtonType
uiChild(), //uiChild
{Key key,
useCache : true,
alignment : Alignment.center,
scaleCoefficient : 0.75,
onTapDown,
onTapUp,
onTap,
onTapCancel,
onSecondaryTapDown,
onSecondaryTapUp,
onSecondaryTapCancel,
onDoubleTap,
onLongPress,
onLongPressStart,
onLongPressMoveUpdate,
onLongPressUp,
onLongPressEnd,
onVerticalDragDown,
onVerticalDragStart,
onVerticalDragUpdate,
onVerticalDragEnd,
onVerticalDragCancel,
onHorizontalDragDown,
onHorizontalDragStart,
onHorizontalDragUpdate,
onHorizontalDragEnd,
onHorizontalDragCancel,
onForcePressStart,
onForcePressPeak,
onForcePressUpdate,
onForcePressEnd,
onPanDown,
onPanStart,
onPanUpdate,
onPanEnd,
onPanCancel,
onScaleStart,
onScaleUpdate,
onScaleEnd})
Widget uiChild() {}
Further Explanations:
For a complete set of descriptions for all parameters and methods, see the documentation.
I started using and learning Flutter only some weeks ago so this package might have some parts that don't make sense, that should be completely different, that could be much better, etc. Please let me know! Nicely!
Any help, suggestion or criticism is appreciated!
Cheers.
https://www.cosmossoftware.coffee/Common/Images/CosmosSoftwareIconTransparent.png