TF-1801 Add attachment list items
(cherry picked from commit bdbe545541665b687785dcf167e26a228b978d19)
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
|
||||
import 'package:core/presentation/extensions/color_extension.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class AttachmentListItemWidgetStyle {
|
||||
static const double height = 60;
|
||||
static const double iconSize = 44;
|
||||
static const double space = 8;
|
||||
static const double downloadIconSize = 24;
|
||||
static const double fileTitleBottomSpace = 4;
|
||||
|
||||
static const EdgeInsetsGeometry contentPadding = EdgeInsetsDirectional.all(8);
|
||||
static const EdgeInsetsGeometry fileTitlePadding = EdgeInsetsDirectional.all(4);
|
||||
static const EdgeInsetsGeometry downloadIconPadding = EdgeInsets.only(right: 13.0);
|
||||
|
||||
static const Color downloadIconColor = AppColor.primaryColor;
|
||||
|
||||
static const TextStyle labelTextStyle = TextStyle(
|
||||
fontSize: 14,
|
||||
color: AppColor.attachmentFileNameColor,
|
||||
fontWeight: FontWeight.normal
|
||||
);
|
||||
static const TextStyle dotsLabelTextStyle = TextStyle(
|
||||
fontSize: 12,
|
||||
color: AppColor.attachmentFileNameColor,
|
||||
fontWeight: FontWeight.normal
|
||||
);
|
||||
static const TextStyle sizeLabelTextStyle = TextStyle(
|
||||
fontSize: 12,
|
||||
color: AppColor.attachmentFileSizeColor,
|
||||
fontWeight: FontWeight.normal
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user