소스 검색

feat: customize the placeholder text style

Lucas.Xu 2 년 전
부모
커밋
3f97820094
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      frontend/app_flowy/lib/plugins/doc/editor_styles.dart

+ 4 - 0
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,
     ),