CallAgainPageStyle constructor

const CallAgainPageStyle({
  1. Decoration backgroundDecoration = const BoxDecoration(color: Color(0xff0E274E)),
  2. TextStyle callStatusTextStyle = const TextStyle(fontWeight: FontWeight.w300, color: Color(0xffDEDEDE), fontSize: 14),
  3. TextStyle callerNameTextStyle = const TextStyle(fontWeight: FontWeight.w500, color: Colors.white, fontSize: 18),
  4. Size profileImageSize = const Size(105, 105),
  5. Decoration bottomActionsContainerDecoration = const BoxDecoration(color: Color(0xff162337)),
  6. TextStyle bottomActionsContainerTextStyle = const TextStyle(fontWeight: FontWeight.w300, color: Colors.white, fontSize: 14),
  7. ActionButtonStyle cancelActionStyle = const ActionButtonStyle(activeIconColor: Color(0xff303030), activeBgColor: Colors.white),
  8. ActionButtonStyle callAgainActionStyle = const ActionButtonStyle(activeIconColor: Colors.white, activeBgColor: Color(0xff2FC076)),
  9. TextStyle actionsTitleStyle = const TextStyle(fontWeight: FontWeight.w300, color: Colors.white, fontSize: 12),
})

Implementation

const CallAgainPageStyle({
  this.backgroundDecoration = const BoxDecoration(color: Color(0xff0E274E)),
  this.callStatusTextStyle = const TextStyle(
      fontWeight: FontWeight.w300, color: Color(0xffDEDEDE), fontSize: 14),
  this.callerNameTextStyle = const TextStyle(
      fontWeight: FontWeight.w500, color: Colors.white, fontSize: 18),
  this.profileImageSize = const Size(105, 105),
  this.bottomActionsContainerDecoration =
      const BoxDecoration(color: Color(0xff162337)),
  this.bottomActionsContainerTextStyle = const TextStyle(
      fontWeight: FontWeight.w300, color: Colors.white, fontSize: 14),
  this.cancelActionStyle = const ActionButtonStyle(
      activeIconColor: Color(0xff303030), activeBgColor: Colors.white),
  this.callAgainActionStyle = const ActionButtonStyle(
      activeIconColor: Colors.white, activeBgColor: Color(0xff2FC076)),
  this.actionsTitleStyle = const TextStyle(
      fontWeight: FontWeight.w300, color: Colors.white, fontSize: 12),
});