A Flutter package that provides five beautifully animated and customizable button widgets to enhance user interaction.
BounceReflexButton– Scales down on press for a tactile bounce effectRippleReflexButton– InkWell-style ripple animationLoadingReflexButton– Shows a spinner while an async action completesIconReflexButton– Combines an icon with text for enhanced expressionShadowedReflexButton– Stylish button with shadow and elevation
Add to your pubspec.yaml:
dependencies:
reflex_button: ^0.0.1Then run:
flutter pub get(Coming soon)
import 'package:reflex_button/reflex_button.dart';BounceReflexButton(
onPressed: () {
print("Pressed!");
},
label: 'Bounce Button',
)LoadingReflexButton(
onPressed: () async {
await Future.delayed(Duration(seconds: 2));
},
label: 'Submit',
)See the full demo in the example/ directory.
Created by Hasan Surer
MIT License