ZegoBeautyPluginUIConfig constructor
ZegoBeautyPluginUIConfig({
- Color? backgroundColor = const Color.fromARGB(230, 9, 17, 28),
- Color? selectedIconBorderColor = Colors.red,
- Color? selectedIconDotColor = Colors.red,
- TextStyle? selectedTextStyle = const TextStyle(color: Colors.white, fontSize: 12),
- TextStyle? normalTextStyle = const TextStyle(color: Color(0xffC4C4C4), fontSize: 12),
- TextStyle? sliderTextStyle = const TextStyle(color: Color(0xff1B1A1C), fontSize: 30, fontWeight: FontWeight.w400),
- Color? sliderActiveTrackColor = Colors.red,
- Color? sliderInactiveTrackColor = const Color.fromARGB(76, 0, 0, 0),
- Color? sliderThumbColor = Colors.white,
- TextStyle? normalHeaderTitleTextStyle = const TextStyle(color: Color(0xffC4C4C4), fontSize: 12),
- TextStyle? selectHeaderTitleTextStyle = const TextStyle(color: Colors.white, fontSize: 12),
Implementation
ZegoBeautyPluginUIConfig({
this.backgroundColor = const Color.fromARGB(230, 9, 17, 28),
this.selectedIconBorderColor = Colors.red,
this.selectedIconDotColor = Colors.red,
this.selectedTextStyle = const TextStyle(
color: Colors.white,
fontSize: 12,
),
this.normalTextStyle = const TextStyle(
color: Color(0xffC4C4C4),
fontSize: 12,
),
this.sliderTextStyle = const TextStyle(
color: Color(0xff1B1A1C),
fontSize: 30,
fontWeight: FontWeight.w400,
),
this.sliderActiveTrackColor = Colors.red,
this.sliderInactiveTrackColor = const Color.fromARGB(76, 0, 0, 0),
this.sliderThumbColor = Colors.white,
this.normalHeaderTitleTextStyle = const TextStyle(
color: Color(0xffC4C4C4),
fontSize: 12,
),
this.selectHeaderTitleTextStyle = const TextStyle(
color: Colors.white,
fontSize: 12,
),
});