PanelyButtonsTheme constructor

const PanelyButtonsTheme({
  1. Color primaryBackgroundColor = const Color(0xFFD32F2F),
  2. Color secondaryBackgroundColor = const Color(0xFF131314),
  3. Color disabledButtonColor = const Color(0xFF484842),
  4. TextStyle textStyle = const TextStyle(fontFamily: "Poppins", fontSize: 14, color: Colors.white),
  5. 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,
  ),
});