button3d 0.1.0 copy "button3d: ^0.1.0" to clipboard
button3d: ^0.1.0 copied to clipboard

outdated

Provice a simple 3D button for Flutter, usually found in modern games.

button3d #

This package provide an simple 3D button.

Getting Started #

Import the file.

import 'package:button3d/button3d.dart';

Use with default style: #

Button3d(
  style: Button3dStyle.BLUE, // Button3dStyle.RED, Button3dStyle.WHITE
  onPressed: () {},
  child: Text("Add"),
);

Use with custom style: #

Button3d(
  style: Button3dStyle(
      topColor: Colors.lightGreen,
      backColor: Colors.deepOrange,
      borderRadius: BorderRadius.zero
  ),
  onPressed: () {},
  child: Text("Add"),
);
8
likes
30
pub points
27%
popularity

Publisher

unverified uploader

Provice a simple 3D button for Flutter, usually found in modern games.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on button3d