Procházet zdrojové kódy

Fix formatting in paragraph_cache.dart

Lucas Aschenbach před 3 roky
rodič
revize
7df505f761
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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);