Explorar el Código

notification animation fix

yogevbd hace 6 años
padre
commit
9fbb10974a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      ios/RCCNotification.m

+ 1
- 1
ios/RCCNotification.m Ver fichero

@@ -119,7 +119,7 @@
119 119
     }
120 120
     
121 121
     UIGraphicsBeginImageContextWithOptions(CGSizeMake(1, 1), YES, 0);
122
-    [self.reactView.contentView drawViewHierarchyInRect:CGRectMake(0, 0, 1, 1) afterScreenUpdates:YES];
122
+    [self.reactView.contentView drawViewHierarchyInRect:CGRectMake(0, 0, 1, 1) afterScreenUpdates:NO];
123 123
     UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
124 124
     UIGraphicsEndImageContext();
125 125