TF-2116 Create SubjectComposer widget and style
(cherry picked from commit 9458edb30bbd23db3484d71c9d4caff695008f7f)
This commit is contained in:
@@ -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
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user