├── .gitignore ├── README.md ├── header_github-open.png ├── package.json ├── resources └── img │ ├── bellIcon.png │ ├── leverIcon.png │ ├── messageIcon.png │ ├── socialIcon.png │ └── tuneIcon.png └── src ├── BarPanel ├── barPanel.js ├── index.js └── styles.js ├── TabButton ├── TabBarAnimations.js ├── index.js ├── styles.js └── tabButton.js ├── TabIcons ├── TuneViewIcon │ ├── index.js │ └── styles.js └── index.js ├── TabNavigation ├── index.js ├── navigatorView.js └── styles.js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | yarn-error.log 4 | package-lock.json 5 | yarn.lock 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
178 | screen - is the screen to display 179 |
180 |183 | screenOptions - is options for the screen, which could contain the following fields: 184 |
185 |188 | title - the name under the tab icon, if you do not specify it, then it will use as a default and will be equal to the key (as the example: Screen_1) 189 |
190 |193 | showTitle - is the flag, indicating the display of the name of the tab. 194 |
195 |198 | animated - is the flag, indicating whether the icon should be animated. 199 |
200 |203 | tabIcon - fields of the transfer picture or component, which is used as a tab icon. 204 |
205 |208 | animation - the field which is contain an array with the desired animations provided by the library. 209 |
210 |213 | activeTintColor - the color of active tab 214 |
215 |218 | inactiveTintColor - inactive tab color 219 |
220 |223 | iconStyle - custom Icon Style 224 |
225 |228 | textStyle - custom name style of the tab 229 |
230 |233 | textActiveStyle - custom name style for an active tab 234 |
235 |238 | textInactiveStyle - custom name style for inactive tab 239 |
240 |