reflex_button 0.0.1 copy "reflex_button: ^0.0.1" to clipboard
reflex_button: ^0.0.1 copied to clipboard

A Flutter package that provides customizable, animated reflex buttons.

Reflex Button #

A Flutter package that provides five beautifully animated and customizable button widgets to enhance user interaction.

🚀 Features #

  • BounceReflexButton – Scales down on press for a tactile bounce effect
  • RippleReflexButton – InkWell-style ripple animation
  • LoadingReflexButton – Shows a spinner while an async action completes
  • IconReflexButton – Combines an icon with text for enhanced expression
  • ShadowedReflexButton – Stylish button with shadow and elevation

📦 Installation #

Add to your pubspec.yaml:

dependencies:
  reflex_button: ^0.0.1

Then run:

flutter pub get

📸 Screenshots #

(Coming soon)

🧩 Usage #

import 'package:reflex_button/reflex_button.dart';

Example: BounceReflexButton #

BounceReflexButton(
  onPressed: () {
    print("Pressed!");
  },
  label: 'Bounce Button',
)

Example: LoadingReflexButton #

LoadingReflexButton(
  onPressed: () async {
    await Future.delayed(Duration(seconds: 2));
  },
  label: 'Submit',
)

More Examples #

See the full demo in the example/ directory.

💡 Author #

Created by Hasan Surer

📃 License #

MIT License

0
likes
140
points
8
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides customizable, animated reflex buttons.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on reflex_button