TF-2084 Add styles for rule filter action
(cherry picked from commit 9635cfb426a84cd50398ae7e21f04b3bacb83530)
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import 'package:core/presentation/extensions/color_extension.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class RuleFilterActionStyles {
|
||||
static const double extentRatio = 0.1;
|
||||
static const double removeButtonRadius = 110.0;
|
||||
static const double mainPadding = 12.0;
|
||||
static const double mainBorderRadius = 12.0;
|
||||
static const int maxLines = 1;
|
||||
static const double fontSize = 16.0;
|
||||
static const Color color = Colors.black;
|
||||
static const TextStyle textStyle = TextStyle(
|
||||
fontWeight: FontWeight.normal,
|
||||
fontSize: fontSize,
|
||||
color: color,
|
||||
);
|
||||
static const double itemDistance = 12.0;
|
||||
static const TextStyle addActionButtonTextStyle = TextStyle(
|
||||
fontWeight: FontWeight.w500,
|
||||
fontSize: 17.0,
|
||||
color: AppColor.primaryColor,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user