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

outdated

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
0
points
19
downloads

Publisher

unverified uploader

Weekly Downloads

Berry Design, Flutter UI package

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on berryd