TF-2116 Create TitleComposer widget and style

(cherry picked from commit e56b2c28728ddc44e19d8cdbe4865ea0ba5e3d9a)
This commit is contained in:
dab246
2023-09-06 11:47:04 +07:00
committed by Dat H. Pham
parent f84f2ce4fd
commit 761c2560ff
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class TitleComposerWidgetStyle {
static const TextStyle textStyle = TextStyle(
fontSize: 17,
fontWeight: FontWeight.w600,
color: Colors.black
);
}