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.

example/readme.md

A Complete example #

import 'package:button3d/button3d.dart';
import 'package:flutter/material.dart';

var button1 = Button3d(
  style: Button3dStyle.BLUE,
  onPressed: () {},
  child: Text("Add"),
);

var button2 = Button3d(
  style: Button3dStyle(
      topColor: Colors.lightGreen,
      backColor: Colors.deepOrange,
      borderRadius: BorderRadius.zero
  ),
  onPressed: () {},
  child: Text("Add"),
);
8
likes
30
pub points
35%
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