TF-2116 Create SubjectComposer widget and style

(cherry picked from commit 9458edb30bbd23db3484d71c9d4caff695008f7f)
This commit is contained in:
dab246
2023-09-06 11:47:14 +07:00
committed by Dat H. Pham
parent 761c2560ff
commit 42beb78bb4
2 changed files with 80 additions and 0 deletions
@@ -0,0 +1,21 @@
import 'package:core/presentation/extensions/color_extension.dart';
import 'package:flutter/material.dart';
class SubjectComposerWidgetStyle {
static const double space = 12;
static const Color cursorColor = AppColor.primaryColor;
static const Color borderColor = AppColor.colorLineComposer;
static const TextStyle labelTextStyle = TextStyle(
fontSize: 14,
fontWeight: FontWeight.w400,
color: AppColor.colorLabelComposer
);
static const TextStyle inputTextStyle = TextStyle(
color: Colors.black,
fontSize: 16,
fontWeight: FontWeight.w500
);
}