Explorar el Código

Fix formatting in paragraph_cache.dart

Lucas Aschenbach hace 3 años
padre
commit
7df505f761
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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);