From 3f97820094e46bdea3b7184ddf87083bdb59c09f Mon Sep 17 00:00:00 2001 From: "Lucas.Xu" Date: Wed, 26 Oct 2022 14:51:39 +0800 Subject: [PATCH] feat: customize the placeholder text style --- frontend/app_flowy/lib/plugins/doc/editor_styles.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/app_flowy/lib/plugins/doc/editor_styles.dart b/frontend/app_flowy/lib/plugins/doc/editor_styles.dart index bbc9275444..0c503e19cb 100644 --- a/frontend/app_flowy/lib/plugins/doc/editor_styles.dart +++ b/frontend/app_flowy/lib/plugins/doc/editor_styles.dart @@ -14,6 +14,10 @@ EditorStyle customEditorTheme(BuildContext context) { fontFamily: 'poppins', fontSize: _baseFontSize, ), + placeholderTextStyle: editorStyle.placeholderTextStyle?.copyWith( + fontFamily: 'poppins', + fontSize: _baseFontSize, + ), bold: editorStyle.bold?.copyWith( fontWeight: FontWeight.w500, ),