|
|
|
|
@ -119,8 +119,8 @@ class RecurrentTaskInfoWidget extends StatelessWidget {
|
|
|
|
|
labelText: context.translation.comment,
|
|
|
|
|
backgroundColor: AppColor.fieldBgColor(context),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
hintStyle: TextStyle(color: context.isDark?AppColor.white10:AppColor.black10),
|
|
|
|
|
labelStyle: TextStyle(color: context.isDark?AppColor.white10:AppColor.black10),
|
|
|
|
|
hintStyle: TextStyle(color: context.isDark ? AppColor.white10 : AppColor.black10),
|
|
|
|
|
labelStyle: TextStyle(color: context.isDark ? AppColor.white10 : AppColor.black10),
|
|
|
|
|
alignLabelWithHint: true,
|
|
|
|
|
textInputType: TextInputType.multiline,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
@ -149,5 +149,5 @@ Widget buildingInfoWidget({required String label, required String? value, requir
|
|
|
|
|
style: AppTextStyles.bodyText2.copyWith(color: AppColor.textColor(context)),
|
|
|
|
|
)
|
|
|
|
|
],
|
|
|
|
|
).toShadowContainer(context, backgroundColor: AppColor.background(context), borderRadius: 10, paddingObject: EdgeInsets.all(12.toScreenHeight), showShadow: false);
|
|
|
|
|
).toShadowContainer(context, backgroundColor: context.isDark ? AppColor.neutral60 : AppColor.neutral100, borderRadius: 10, paddingObject: EdgeInsets.all(12.toScreenHeight), showShadow: false);
|
|
|
|
|
}
|
|
|
|
|
|