PanelyDialogTheme constructor
const
PanelyDialogTheme({
- Color backgroundColor = const Color(0xFF131314),
- Color borderColor = const Color(0xFF424242),
- Divider divider = const Divider(height: 1, color: Color(0xFF424242)),
- TextStyle headerTextStyle = const TextStyle(fontFamily: "Poppins", fontSize: 26, fontWeight: FontWeight.w500, color: Colors.white),
- TextStyle contentTextStyle = const TextStyle(fontFamily: "Poppins", fontSize: 14, color: Colors.grey),
Implementation
const PanelyDialogTheme({
this.backgroundColor = const Color(0xFF131314),
this.borderColor = const Color(0xFF424242),
this.divider = const Divider(
height: 1,
color: Color(0xFF424242),
),
this.headerTextStyle = const TextStyle(
fontFamily: "Poppins",
fontSize: 26,
fontWeight: FontWeight.w500,
color: Colors.white,
),
this.contentTextStyle = const TextStyle(
fontFamily: "Poppins",
fontSize: 14,
color: Colors.grey,
),
});