0 purchases
berryd
Components #
Button #
BdButton #
BdButton(
backgroundColor: BdBlack.color,
onTap: () {
print("clicked normal button");
},
child: Text(
"button",
style: TextStyle(color: Colors.white, fontSize: BdFontSize.md),
),
)
copied to clipboard
BdPrimaryButton #
BdPrimaryButton(
label: "primary button",
onTap: () {
print("clicked primary button!");
},
)
copied to clipboard
BdSecondaryButton #
BdSecondaryButton(
label: "secondary button",
onTap: () {
print("clicked secondary button!");
},
)
copied to clipboard
BdLinkButton #
BdLinkButton(
label: "link button",
onTap: () {
print("clicked link button!");
},
)
copied to clipboard
BdGradientButton #
BdGradientButton(
child: Text(
"Gradient button",
style: TextStyle(color: Colors.white, fontSize: BdFontSize.md),
),
onTap: () {
print("clicked gradient button!");
},
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.