cannedButtonStyles method
Implementation
Map<ButtonStyleName, ButtonStyleProperties> cannedButtonStyles() => {
"yellowOnBlack": ButtonStyleProperties(
tsPropGroup: TextStyleProperties(),
fgColor: ColorModel.yellow(),
bgColor: ColorModel.black(),
padding: 10,
elevation: 6,
),
"blackOnWhite": ButtonStyleProperties(
tsPropGroup: TextStyleProperties(),
fgColor: ColorModel.black(),
bgColor: ColorModel.white(),
padding: 10,
elevation: 6,
),
};