Browse Source

notification animation fix

yogevbd 6 years ago
parent
commit
9fbb10974a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      ios/RCCNotification.m

+ 1
- 1
ios/RCCNotification.m View File

119
     }
119
     }
120
     
120
     
121
     UIGraphicsBeginImageContextWithOptions(CGSizeMake(1, 1), YES, 0);
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
     UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
123
     UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
124
     UIGraphicsEndImageContext();
124
     UIGraphicsEndImageContext();
125
     
125