|
|
|
|
@ -74,7 +74,7 @@ class _EtqanOvrCreateRequestState extends State<EtqanOvrCreateRequest> {
|
|
|
|
|
_buildAttachmentSection(provider),
|
|
|
|
|
16.height,
|
|
|
|
|
_buildDescriptionField(provider),
|
|
|
|
|
16.height,
|
|
|
|
|
8.height,
|
|
|
|
|
_buildAnonymousCheckbox(provider),
|
|
|
|
|
24.height,
|
|
|
|
|
],
|
|
|
|
|
@ -284,7 +284,6 @@ class _EtqanOvrCreateRequestState extends State<EtqanOvrCreateRequest> {
|
|
|
|
|
onTap: () {
|
|
|
|
|
provider.setIsAnonymous(!provider.isAnonymous);
|
|
|
|
|
},
|
|
|
|
|
borderRadius: BorderRadius.circular(15),
|
|
|
|
|
child: Row(
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Checkbox(
|
|
|
|
|
@ -295,22 +294,10 @@ class _EtqanOvrCreateRequestState extends State<EtqanOvrCreateRequest> {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
activeColor: MyColors.gradiantEndColor,
|
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
|
borderRadius: BorderRadius.circular(4),
|
|
|
|
|
),
|
|
|
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(4)),
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(width: 8),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Text(
|
|
|
|
|
LocaleKeys.submitAsAnonymous.tr(),
|
|
|
|
|
style: const TextStyle(
|
|
|
|
|
fontSize: 14,
|
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
|
color: Color(0xff2B353E),
|
|
|
|
|
letterSpacing: -0.44,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
Expanded(child: Text(LocaleKeys.submitAsAnonymous.tr(), style: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500, color: Color(0xff2B353E), letterSpacing: -0.44))),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
|