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

outdated

Simple 3D button for Flutter

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
0
pub points
26%
popularity

Publisher

unverified uploader

Simple 3D button for Flutter

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on button3d