CallUserTileStyle constructor
const
CallUserTileStyle({
- BorderRadiusGeometry borderRadius = const BorderRadius.all(Radius.circular(16.6)),
- Color backgroundColor = const Color(0xff0D2852),
- int profileImageSize = 50,
- TextStyle nameTextStyle = const TextStyle(fontWeight: FontWeight.normal, color: Colors.white, fontSize: 14),
- ActionButtonStyle muteActionStyle = const ActionButtonStyle(activeBgColor: Color(0x00000080), activeIconColor: Colors.white),
- ActionButtonStyle speakingIndicatorStyle = const ActionButtonStyle(activeBgColor: Color(0xff3ABF87), activeIconColor: Colors.white),
- TextStyle callStatusTextStyle = const TextStyle(fontWeight: FontWeight.w300, color: Colors.white, fontSize: 14),
Implementation
const CallUserTileStyle({
this.borderRadius = const BorderRadius.all(Radius.circular(16.6)),
this.backgroundColor = const Color(0xff0D2852),
this.profileImageSize = 50,
this.nameTextStyle = const TextStyle(
fontWeight: FontWeight.normal, color: Colors.white, fontSize: 14),
this.muteActionStyle = const ActionButtonStyle(
activeBgColor: Color(0x00000080), activeIconColor: Colors.white),
this.speakingIndicatorStyle = const ActionButtonStyle(
activeBgColor: Color(0xff3ABF87), activeIconColor: Colors.white),
this.callStatusTextStyle = const TextStyle(
fontWeight: FontWeight.w300, color: Colors.white, fontSize: 14),
});