PanelyButtonsTheme constructor
const
PanelyButtonsTheme({
- Color primaryBackgroundColor = const Color(0xFFD32F2F),
- Color secondaryBackgroundColor = const Color(0xFF131314),
- Color disabledButtonColor = const Color(0xFF484842),
- TextStyle textStyle = const TextStyle(fontFamily: "Poppins", fontSize: 14, color: Colors.white),
- TextStyle disabledButtonTextStyle = const TextStyle(fontFamily: "Poppins", fontSize: 14, color: Colors.grey),
Implementation
const PanelyButtonsTheme({
this.primaryBackgroundColor = const Color(0xFFD32F2F),
this.secondaryBackgroundColor = const Color(0xFF131314),
this.disabledButtonColor = const Color(0xFF484842),
this.textStyle = const TextStyle(
fontFamily: "Poppins",
fontSize: 14,
color: Colors.white,
),
this.disabledButtonTextStyle = const TextStyle(
fontFamily: "Poppins",
fontSize: 14,
color: Colors.grey,
),
});