TF-1981 Update UI spam banner on mobile/tablet
(cherry picked from commit 38eafc659f42a351678eeb3fd2ea1e4496f62a80)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
|
||||
import 'package:core/presentation/extensions/color_extension.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class SpamReportBannerButtonStyles {
|
||||
static const double padding = 8;
|
||||
static const double borderRadius = 10;
|
||||
static const double labelTextSize = 16;
|
||||
static const Color backgroundColor = AppColor.colorSpamReportBannerButtonBackground;
|
||||
static const Color positiveButtonTextColor = AppColor.primaryColor;
|
||||
static const Color negativeButtonTextColor = AppColor.textFieldErrorBorderColor;
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
|
||||
import 'package:core/presentation/extensions/color_extension.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class SpamReportBannerStyles {
|
||||
static const double horizontalMargin = 16;
|
||||
static const double verticalMargin = 8;
|
||||
static const double padding = 12;
|
||||
static const double borderRadius = 12;
|
||||
static const double iconSize = 24;
|
||||
static const double labelTextSize = 16;
|
||||
static const double space = 8;
|
||||
static Color backgroundColor = AppColor.colorSpamReportBannerBackground.withOpacity(0.12);
|
||||
static const Color strokeBorderColor = AppColor.colorSpamReportBannerStrokeBorder;
|
||||
static const Color labelTextColor = AppColor.colorSpamReportBannerLabelColor;
|
||||
}
|
||||
Reference in New Issue
Block a user