Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/react-native/ReactAndroid/api/ReactAndroid.api
Original file line number Diff line number Diff line change
Expand Up @@ -5069,11 +5069,11 @@ public class com/facebook/react/uimanager/ViewAtIndex {
public fun toString ()Ljava/lang/String;
}

public class com/facebook/react/uimanager/ViewDefaults {
public final class com/facebook/react/uimanager/ViewDefaults {
public static final field FONT_SIZE_SP F
public static final field INSTANCE Lcom/facebook/react/uimanager/ViewDefaults;
public static final field LINE_HEIGHT I
public static final field NUMBER_OF_LINES I
public fun <init> ()V
}

public class com/facebook/react/uimanager/ViewGroupDrawingOrderHelper {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,11 @@
* LICENSE file in the root directory of this source tree.
*/

package com.facebook.react.uimanager;

import com.facebook.infer.annotation.Nullsafe;
package com.facebook.react.uimanager

/**
* Exception thrown when a class tries to access a native view by a tag that has no native view
* associated with it.
*/
@Nullsafe(Nullsafe.Mode.LOCAL)
class NoSuchNativeViewException extends IllegalViewOperationException {

public NoSuchNativeViewException(String detailMessage) {
super(detailMessage);
}
}
internal class NoSuchNativeViewException(detailMessage: String) :
IllegalViewOperationException(detailMessage)

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

package com.facebook.react.uimanager

/** Default property values for Views to be shared between Views and ShadowViews. */
public object ViewDefaults {
public const val FONT_SIZE_SP: Float = 14.0f
public const val LINE_HEIGHT: Int = 0
public const val NUMBER_OF_LINES: Int = Int.MAX_VALUE
}