flat_3d_button 1.0.3 copy "flat_3d_button: ^1.0.3" to clipboard
flat_3d_button: ^1.0.3 copied to clipboard

A simple 3D flat button with click animation, flat 3d button contains 3 methods, a flat 3d button with any widget as it's child, text as it's child and also an icon as it's child

🔮 Flat 3d Button #

pub package

A simple 3D flat button with click animation!

🔩 Installation #

dependencies:
  flat_3d_button: ^1.0.3
copied to clipboard

🚚 Import #

import 'package:flat_3d_button/flat_3d_button.dart';
copied to clipboard

🚀 Usage Examples #

1. Counter app using flat 3D buttons:


  Flat3dButton.icon(
    color: Colors.red,
    onPressed: _decrementCounter,
    icon: Icons.remove,
  ),
  const SizedBox(width: 10),
  Flat3dButton.text(
    onPressed: _resetCounter,
    text: 'reset',
  ),
  const SizedBox(width: 10),
  Flat3dButton.icon(
    color: Colors.green,
    onPressed: _incrementCounter,
    icon: Icons.add,
  ),
copied to clipboard

refer to the main.dart in the example for complete source code.

2. Flat 3D button with text:


Flat3dButton.text(
  onPressed: () => print('clicked'),
  text: 'Flat',
);
copied to clipboard

3. Flat 3D button with icon:


Flat3dButton.icon(
  onPressed: () => print('clicked'),
  icon: Icons.rocket,
);
copied to clipboard

🔧 Author #


📃 License #

MIT License

38
likes
160
points
75
downloads

Publisher

verified publisherrijfas.tech

Weekly Downloads

2024.09.17 - 2025.04.01

A simple 3D flat button with click animation, flat 3d button contains 3 methods, a flat 3d button with any widget as it's child, text as it's child and also an icon as it's child

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flat_3d_button