File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
frontend/appflowy_flutter/lib
mobile/presentation/database/board/widgets
workspace/application/settings/appearance Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,9 @@ class _MobileBoardTrailingState extends State<MobileBoardTrailing> {
118118 icon: const Icon (Icons .add),
119119 label: Text (
120120 LocaleKeys .board_column_newGroup.tr (),
121+ style: style.textTheme.bodyMedium! .copyWith (
122+ fontWeight: FontWeight .w600,
123+ ),
121124 ),
122125 onPressed: () => setState (
123126 () => isEditing = true ,
Original file line number Diff line number Diff line change @@ -119,8 +119,9 @@ class MobileAppearance extends BaseAppearance {
119119 fixedSize: MaterialStateProperty .all (const Size .fromHeight (48 )),
120120 elevation: MaterialStateProperty .all (0 ),
121121 textStyle: MaterialStateProperty .all (
122- const TextStyle (
122+ TextStyle (
123123 fontSize: 14 ,
124+ fontFamily: fontStyle.fontFamily,
124125 fontWeight: FontWeight .w600,
125126 ),
126127 ),
@@ -139,8 +140,9 @@ class MobileAppearance extends BaseAppearance {
139140 outlinedButtonTheme: OutlinedButtonThemeData (
140141 style: ButtonStyle (
141142 textStyle: MaterialStateProperty .all (
142- const TextStyle (
143+ TextStyle (
143144 fontSize: 14 ,
145+ fontFamily: fontStyle.fontFamily,
144146 fontWeight: FontWeight .w500,
145147 ),
146148 ),
You can’t perform that action at this time.
0 commit comments