berryd 0.1.2 copy "berryd: ^0.1.2" to clipboard
berryd: ^0.1.2 copied to clipboard

Berry Design, Flutter UI package

Components #

Button #

BdButton #

BdButton

BdButton(
  backgroundColor: BdBlack.color,
  onTap: () {
    print("clicked normal button");
  },
  child: Text(
    "button",
    style: TextStyle(color: Colors.white, fontSize: BdFontSize.md),
  ),
)

BdPrimaryButton #

BdButton

BdPrimaryButton(
  label: "primary button",
  onTap: () {
    print("clicked primary button!");
  },
)

BdSecondaryButton #

BdButton

BdSecondaryButton(
  label: "secondary button",
  onTap: () {
    print("clicked secondary button!");
  },
)

BdLinkButton #

BdButton

BdLinkButton(
  label: "link button",
  onTap: () {
    print("clicked link button!");
  },
)

BdGradientButton #

BdButton

BdGradientButton(
  child: Text(
    "Gradient button",
    style: TextStyle(color: Colors.white, fontSize: BdFontSize.md),
  ),
  onTap: () {
    print("clicked gradient button!");
  },
)
0
likes
125
points
19
downloads

Publisher

unverified uploader

Weekly Downloads

Berry Design, Flutter UI package

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on berryd