0 purchases
button3d
button3d #
This package provide an simple 3D button.
Getting Started #
Import the file.
import 'package:button3d/button3d.dart';
copied to clipboard
Use with default style: #
Button3d(
style: Button3dStyle.BLUE, // Button3dStyle.RED, Button3dStyle.WHITE
onPressed: () {},
child: Text("Add"),
);
copied to clipboard
Use with custom style: #
Button3d(
style: Button3dStyle(
topColor: Colors.lightGreen,
backColor: Colors.deepOrange,
borderRadius: BorderRadius.zero
),
onPressed: () {},
child: Text("Add"),
);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.