Преглед на файлове

Add missing params for showInAppNotification (#1707)

* Add font family support on bottom tabs

* import missing classes

* import missing class

* update document

* Support customize icon for left nav button in android

* Add navBar navBarTextFontSize support for android

* Add missing parameter instruction for in app notification

* Merge changes as origin master
Jing Tai Piao преди 7 години
родител
ревизия
8ce9dac657
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  1. 1
    0
      docs/screen-api.md

+ 1
- 0
docs/screen-api.md Целия файл

@@ -125,6 +125,7 @@ Show in-app notification. This generally looks like a pop-up window that can app
125 125
 this.props.navigator.showInAppNotification({
126 126
  screen: "example.InAppNotification", // unique ID registered with Navigation.registerScreen
127 127
  passProps: {}, // simple serializable object that will pass as props to the in-app notification (optional)
128
+ autoDismissTimerSec: 1 // auto dismiss notification in seconds
128 129
 });
129 130
 ```
130 131