Sfoglia il codice sorgente

Don't use isAttachedToWindow

Janic Duplessis 4 anni fa
parent
commit
698dbfee9e

+ 0
- 4
android/src/main/java/com/th3rdwave/safeareacontext/SafeAreaView.java Vedi File

@@ -77,10 +77,6 @@ public class SafeAreaView extends ReactViewGroup implements ViewTreeObserver.OnG
77 77
   }
78 78
 
79 79
   private void maybeUpdateInsets() {
80
-    if (!isAttachedToWindow()) {
81
-      return;
82
-    }
83
-
84 80
     EdgeInsets edgeInsets = getSafeAreaInsets();
85 81
     if (mLastInsets == null || !mLastInsets.equalsToEdgeInsets(edgeInsets)) {
86 82
       Assertions.assertNotNull(mInsetsChangeListener).onInsetsChange(this, edgeInsets);