소스 검색

Fix formatting in paragraph_cache.dart

Lucas Aschenbach 3 년 전
부모
커밋
7df505f761
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      lib/src/ui/paragraph_cache.dart

+ 2 - 1
lib/src/ui/paragraph_cache.dart

@@ -13,7 +13,8 @@ class ParagraphCache {
     return _cache[key];
   }
 
-  Paragraph performAndCacheLayout(String text, TextStyle style, double textScaleFactor, int key) {
+  Paragraph performAndCacheLayout(
+      String text, TextStyle style, double textScaleFactor, int key) {
     final builder = ParagraphBuilder(style.getParagraphStyle());
     builder.pushStyle(style.getTextStyle(textScaleFactor: textScaleFactor));
     builder.addText(text);