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!");
  },
)