TF-2078 Display original email content when can not parse calendar event

(cherry picked from commit 295c3caa684bf5c4279e3219a961b96498c01373)
This commit is contained in:
dab246
2023-08-11 15:56:55 +07:00
committed by Dat Vu
parent 75f2217fa2
commit a756385546
12 changed files with 461 additions and 362 deletions
@@ -0,0 +1,17 @@
import 'package:core/presentation/extensions/color_extension.dart';
import 'package:core/utils/platform_info.dart';
import 'package:flutter/material.dart';
class EmailSubjectStyles {
static const double textSize = 20;
static const int? maxLines = PlatformInfo.isWeb ? 2 : null;
static const int? minLines = PlatformInfo.isWeb ? 1 : null;
static const Color textColor = AppColor.colorNameEmail;
static const Color cursorColor = AppColor.colorTextButton;
static const FontWeight fontWeight = FontWeight.w500;
static const EdgeInsetsGeometry padding = EdgeInsets.symmetric(vertical: 12, horizontal: 16);
}