Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
package com.facebook.react.viewmanagers;

import android.view.View;
import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;

public interface RNSScreenContainerManagerInterface<T extends View> {
public interface RNSScreenContainerManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
// No props
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
package com.facebook.react.viewmanagers;

import android.view.View;
import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;

public interface RNSScreenContentWrapperManagerInterface<T extends View> {
public interface RNSScreenContentWrapperManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
// No props
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
package com.facebook.react.viewmanagers;

import android.view.View;
import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;

public interface RNSScreenFooterManagerInterface<T extends View> {
public interface RNSScreenFooterManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
// No props
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
import androidx.annotation.Nullable;
import com.facebook.react.bridge.ReadableArray;
import com.facebook.react.bridge.ReadableMap;
import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;

public interface RNSScreenManagerInterface<T extends View> {
public interface RNSScreenManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
void setSheetAllowedDetents(T view, @Nullable ReadableArray value);
void setSheetLargestUndimmedDetent(T view, int value);
void setSheetGrabberVisible(T view, boolean value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@

import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;

public interface RNSScreenStackHeaderConfigManagerInterface<T extends View> {
public interface RNSScreenStackHeaderConfigManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
void setBackgroundColor(T view, @Nullable Integer value);
void setBackTitle(T view, @Nullable String value);
void setBackTitleFontFamily(T view, @Nullable String value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@

import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;

public interface RNSScreenStackHeaderSubviewManagerInterface<T extends View> {
public interface RNSScreenStackHeaderSubviewManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
void setType(T view, @Nullable String value);
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
package com.facebook.react.viewmanagers;

import android.view.View;
import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;

public interface RNSScreenStackManagerInterface<T extends View> {
public interface RNSScreenStackManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
// No props
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@

import android.view.View;
import androidx.annotation.Nullable;
import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface;

public interface RNSSearchBarManagerInterface<T extends View> {
public interface RNSSearchBarManagerInterface<T extends View> extends ViewManagerWithGeneratedInterface {
void setHideWhenScrolling(T view, boolean value);
void setAutoCapitalize(T view, @Nullable String value);
void setPlaceholder(T view, @Nullable String value);
Expand Down
Loading