diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingProhibitedView.java b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingProhibitedView.kt similarity index 60% rename from packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingProhibitedView.java rename to packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingProhibitedView.kt index 66b1c72e048..f28973157dd 100644 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingProhibitedView.java +++ b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactClippingProhibitedView.kt @@ -5,22 +5,22 @@ * LICENSE file in the root directory of this source tree. */ -package com.facebook.react.uimanager; +package com.facebook.react.uimanager /** * Some Views may not function if added directly to a ViewGroup that clips them. For example, TTRC * markers may rely on `onDraw` functionality to work properly, and will break if they're clipped * out of the View hierarchy for any resaon. * - *

This situation can occur more often in Fabric with View Flattening. We may prevent this sort - * of View Flattening from occurring in the future, but the connection is not entirely certain. + * This situation can occur more often in Fabric with View Flattening. We may prevent this sort of + * View Flattening from occurring in the future, but the connection is not entirely certain. * - *

This can occur either because ReactViewGroup clips them out, using the ordinarary subview + * This can occur either because ReactViewGroup clips them out, using the ordinarary subview * clipping feature. It is also possible if a View is added directly to a ReactRootView below the * fold of the screen. * - *

Generally the solution is to prevent View flattening in JS by adding `collapsable=false` to a + * Generally the solution is to prevent View flattening in JS by adding `collapsable=false` to a * parent component of the clipped view, and/or move the View higher up in the hierarchy so it is * always rendered within the first page of the screen. */ -public interface ReactClippingProhibitedView {} +public interface ReactClippingProhibitedView