TF-2064 Add QuotasBannerWidget

(cherry picked from commit ce85ba3d7e647a8a93a54144a840905a8c479fb0)
This commit is contained in:
dab246
2023-08-04 21:26:15 +07:00
committed by Dat Vu
parent 9a2e838d03
commit 3aa2b91a89
6 changed files with 303 additions and 81 deletions
@@ -0,0 +1,23 @@
import 'package:core/presentation/extensions/color_extension.dart';
import 'package:flutter/material.dart';
class QuotasBannerStyles {
static const double verticalPadding = 12;
static const double horizontalPadding = 16;
static const double topMargin = 8;
static const double startMargin = 16;
static const double endMargin = 16;
static const double bottomMargin = 8;
static const double iconPadding = 16;
static const double iconSize = 32;
static const double titleTextSize = 17;
static const double messageTextSize = 15;
static const double space = 8;
static const double borderRadius = 12;
static const Color messageTextColor = AppColor.colorLabelQuotas;
static const FontWeight titleFontWeight = FontWeight.w700;
static const FontWeight messageFontWeight = FontWeight.w400;
}