Search in sources :

Example 1 with NullNumber

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();
}
Also used : NullBool(com.reactnativenavigation.options.params.NullBool) NullNumber(com.reactnativenavigation.options.params.NullNumber) NullText(com.reactnativenavigation.options.params.NullText)

Example 2 with 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();
}
Also used : NullNumber(com.reactnativenavigation.options.params.NullNumber) NullText(com.reactnativenavigation.options.params.NullText)

Example 3 with 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;
}
Also used : NullNumber(com.reactnativenavigation.options.params.NullNumber) NullText(com.reactnativenavigation.options.params.NullText)

Aggregations

NullNumber (com.reactnativenavigation.options.params.NullNumber)3 NullText (com.reactnativenavigation.options.params.NullText)3 NullBool (com.reactnativenavigation.options.params.NullBool)1