Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Imagesource open for inheritance #46092

Closed
wants to merge 1 commit into from
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
2 changes: 1 addition & 1 deletion packages/react-native/ReactAndroid/api/ReactAndroid.api
Original file line number Diff line number Diff line change
Expand Up @@ -6706,7 +6706,7 @@ public final class com/facebook/react/views/image/ReactImageView : com/facebook/
public final class com/facebook/react/views/image/ReactImageView$Companion {
}

public final class com/facebook/react/views/imagehelper/ImageSource {
public class com/facebook/react/views/imagehelper/ImageSource {
public static final field Companion Lcom/facebook/react/views/imagehelper/ImageSource$Companion;
public fun <init> (Landroid/content/Context;Ljava/lang/String;)V
public fun <init> (Landroid/content/Context;Ljava/lang/String;D)V
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import android.net.Uri
import java.util.Objects

/** Class describing an image source (network URI or resource) and size. */
public class ImageSource
public open class ImageSource
@JvmOverloads
constructor(
context: Context,
Expand Down
Loading