buildManageRole method

Widget buildManageRole(
  1. Color baseTextColor
)

Implementation

Widget buildManageRole(Color baseTextColor) {
  return Expanded(
    child: IconButton(
      tooltip: 'Manage Role',
      icon: Icon(
        CupertinoIcons.arrow_swap,
        color: baseTextColor.withOpacity(0.65),
      ),
      onPressed: () {
        sideBarXController.openRoleManagerDialog();
      },
    ),
  );
}