buildManageRole method
Implementation
Widget buildManageRole(BuildContext context) {
return isMobile ? SizedBox(
height: 100.0,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
AppText('Role', style: TextStyles.normal(context)),
buildSizeHeight(5.0),
buildRoleChips(context),
],
),
) : SizedBox(
height: 60.0,
child: Row(
children: [
AppText('Role', style: TextStyles.normal(context)),
const Spacer(),
buildRoleChips(context),
],
),
);
}