use of com.reactnativenavigation.options.params.NullNumber in project react-native-navigation by wix.
the class ComponentOptions method reset.
public void reset() {
name = new NullText();
componentId = new NullText();
alignment = Alignment.Default;
waitForRender = new NullBool();
width = new NullNumber();
height = new NullNumber();
}
use of com.reactnativenavigation.options.params.NullNumber in project react-native-navigation by wix.
the class BottomTabsOptions method clearOneTimeOptions.
public void clearOneTimeOptions() {
currentTabId = new NullText();
currentTabIndex = new NullNumber();
}
use of com.reactnativenavigation.options.params.NullNumber in project react-native-navigation by wix.
the class Options method clearOneTimeOptions.
public Options clearOneTimeOptions() {
bottomTabsOptions.currentTabId = new NullText();
bottomTabsOptions.currentTabIndex = new NullNumber();
return this;
}
Aggregations