AddParticipantsPageStyle constructor

const AddParticipantsPageStyle({
  1. AppBarTheme appBarTheme = const AppBarTheme(backgroundColor: Color(0xffF2F2F2), shadowColor: Colors.white, surfaceTintColor: Colors.white, titleTextStyle: TextStyle(fontWeight: FontWeight.bold, color: Color(0xff181818), fontSize: 20), iconTheme: IconThemeData(color: Color(0xff181818)), actionsIconTheme: IconThemeData(color: Color(0xff181818))),
  2. TabBarTheme tabBarTheme = const TabBarTheme(indicatorColor: AppColor.primaryColor, labelColor: AppColor.primaryColor, unselectedLabelColor: Color(0xff181818)),
  3. EditTextFieldStyle searchTextFieldStyle = const EditTextFieldStyle(),
  4. TabItemStyle tabItemStyle = const TabItemStyle(),
  5. ContactItemStyle contactItemStyle = const ContactItemStyle(),
  6. ParticipantItemStyle participantItemStyle = const ParticipantItemStyle(),
  7. CopyMeetLinkStyle copyMeetLinkStyle = const CopyMeetLinkStyle(),
  8. TextStyle noDataTextStyle = const TextStyle(fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 14),
  9. Decoration buttonDecoration = const BoxDecoration(color: AppColor.primaryColor, shape: BoxShape.rectangle, borderRadius: BorderRadius.only(topLeft: Radius.circular(2), topRight: Radius.circular(2))),
  10. TextStyle buttonTextStyle = const TextStyle(fontWeight: FontWeight.w500, color: Colors.white, fontSize: 14),
  11. Color buttonIconColor = Colors.white,
})

Implementation

const AddParticipantsPageStyle(
    {this.appBarTheme = const AppBarTheme(
      backgroundColor: Color(0xffF2F2F2),
      shadowColor: Colors.white,
      surfaceTintColor: Colors.white,
      titleTextStyle: TextStyle(
          fontWeight: FontWeight.bold,
          color: Color(0xff181818),
          fontSize: 20),
      iconTheme: IconThemeData(color: Color(0xff181818)),
      actionsIconTheme: IconThemeData(color: Color(0xff181818)),
    ),
    this.tabBarTheme = const TabBarTheme(
        indicatorColor: AppColor.primaryColor,
        labelColor: AppColor.primaryColor,
        unselectedLabelColor: Color(0xff181818)),
    this.searchTextFieldStyle = const EditTextFieldStyle(),
    this.tabItemStyle = const TabItemStyle(),
    this.contactItemStyle = const ContactItemStyle(),
    this.participantItemStyle = const ParticipantItemStyle(),
    this.copyMeetLinkStyle = const CopyMeetLinkStyle(),
    this.noDataTextStyle = const TextStyle(
        fontWeight: FontWeight.w600, color: Color(0xff181818), fontSize: 14),
    this.buttonDecoration = const BoxDecoration(
        color: AppColor.primaryColor,
        shape: BoxShape.rectangle,
        borderRadius: BorderRadius.only(
            topLeft: Radius.circular(2), topRight: Radius.circular(2))),
    this.buttonTextStyle = const TextStyle(
      fontWeight: FontWeight.w500,
      color: Colors.white,
      fontSize: 14,
    ),
    this.buttonIconColor = Colors.white});