react-native-navigation 99.99.9 → 99.99.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +1854 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1 +1,1854 @@
1
- bla
1
+ >⚠️ This changelog is no longer maintained. Release notes can be found [here](https://github.com/wix/react-native-navigation/releases).
2
+ ___
3
+ # Changelog
4
+
5
+ # 7.0.0
6
+
7
+ This release mainly focuses on adding support for TurboModules (Integrating Reanimated2 is now possible!) and aligning the Navigation commands API once and for all.
8
+
9
+ ## Key Features
10
+
11
+ - Support TurboModules (and Reanimated v2)
12
+ - New layout system on iOS. Layout insets are now handled via constraints and safeAreaLayoutGuide instead of margins and edgesForExtendedLayout as per Apple's recommendations. This is not a breaking change and is done in preparation to deprecate the `bottomTabs.drawBehind` option on iOS.
13
+ - Deprecate registerComponentWithRedux. [registerComponent with providers](https://wix.github.io/react-native-navigation/api/component#registering-a-component-wrapped-with-providers) should be used instead.
14
+ - Align promise results of all Navigation commands on both iOS and Android
15
+
16
+ ## Upgrading from v6
17
+
18
+ ### iOS
19
+
20
+ Add `extraModulesForBridge` in `AppDelegate.m`
21
+
22
+ ```objc
23
+ - (NSArray<id<RCTBridgeModule>> *)extraModulesForBridge:(RCTBridge *)bridge {
24
+ return [ReactNativeNavigation extraModulesForBridge:bridge];
25
+ }
26
+ ```
27
+
28
+ In case your'e bootstraping ReactNativeNavigation like that:
29
+ ```objc
30
+ [ReactNativeNavigation bootstrap:jsCodeLocation launchOptions:launchOptions];
31
+ ```
32
+
33
+ Replace it with
34
+ ```objc
35
+ [ReactNativeNavigation bootstrapWithDelegate:self launchOptions:launchOptions];
36
+ ```
37
+
38
+ > **If on upgrading you experience the error:**
39
+ >
40
+ >Specs satisfying the ReactNativeNavigation (from ../node_modules/react-native-navigation) dependency were found, but they required a higher minimum deployment target.
41
+ >
42
+ >Please update your Podfile deployment target to at least 11.0:
43
+ >```
44
+ >platform :ios, '11.0'
45
+ >```
46
+
47
+ ### Android
48
+
49
+ No Changes needed 🥳
50
+
51
+ ## Breaking changes
52
+
53
+ - Starting from this version, both `modalDismissed` and `modalAttemptedToDismiss` events can no longer be handled in components. Handling them is only supported via the `Navigation.events()` api.
54
+ - `dismissModal` promise is resolved with the id of the root layout. For example, if a modal which contains a stack and a few children was dismissed, the `Navigation.dismissModal()` promise will be resolved with the stack's id.
55
+ - Change Navigation commands promise resolve type from any to string
56
+
57
+ ### iOS
58
+
59
+ - The default value of `sideMenu.openGestureMode` is now `bezel`. Up until now `entireScreen` was the default value which made it difficult for users to interact with scrollable components, Carousel for instance, as the SideMenu intercepted the scroll events. The `bezel` option solves this issue as the SideMenu will respond only to touch events from the edge of the screen.
60
+ - Resolve all Navigation commands with id of root layout instead of actual layout.
61
+ - Resolve push command promise with id of pushed layout instead of current layout.
62
+
63
+ ### Android
64
+
65
+ - `fab.id` is mandatory. We plan to rework some of the native components on Android, mainly Fab and BottomTabs. This change is mostly a cosmetic change needed for future work on Fab.
66
+
67
+ ## Changes
68
+
69
+ ### Added
70
+
71
+ - allow assigning OpaqueColorValue as a color [#8f67d9f](https://github.com/wix/react-native-navigation/commit/8f67d9f2dced62b441bcce4ab6e9e21ee62eb177) by [danilobuerger](https://github.com/danilobuerger)
72
+
73
+ #### Android
74
+
75
+ - Support PlatformColor [#d7ba3ff](https://github.com/wix/react-native-navigation/commit/d7ba3ffc19c88b313729757d158b4495f9f97d29) by [danilobuerger](https://github.com/danilobuerger)
76
+
77
+ ### Fixes
78
+
79
+ - Recreate wrapped component on re-register component [#12a615b](https://github.com/wix/react-native-navigation/commit/12a615bd70112571a43f73463376c7a9cfc683ec) by [danilobuerger](https://github.com/danilobuerger)
80
+ - Calling UpdateProps multiple times does not discard previous props [#fff6d23](https://github.com/wix/react-native-navigation/commit/fff6d23c8b6d380ac50f9b1c1af03d254ba3dd65) by [jinshin1013](https://github.com/jinshin1013)
81
+ - Fix props type passed to options function in `NavigationFunctionalComponent` interface [#a3a796a](https://github.com/wix/react-native-navigation/commit/a3a796ae0c7c6a5341cdf3f7db06acc01377e0c2) by [mrousavy](https://github.com/mrousavy)
82
+
83
+ #### iOS
84
+
85
+ - Fix options not being applied on large title [#e845afe](https://github.com/wix/react-native-navigation/commit/e845afecaeea16dc92ef2461038079eab1e09a6f) by [yogevbd](https://github.com/yogevbd)
86
+ - Fix crash after calling setStackRoot and pressing the back button [#8a7d34b](https://github.com/wix/react-native-navigation/commit/8a7d34b22a1226cab7ad03e58a858d2ab4ea43fb) by [yogevbd](https://github.com/yogevbd)
87
+ - Initialize UIWindow only if needed [#e5cc0c3](https://github.com/wix/react-native-navigation/commit/e5cc0c3594b495f89b4912f2019be8fec2499fcd) by [danilobuerger](https://github.com/danilobuerger)
88
+ - Change default modalPresentationStyle from overFullScreen to fullScreen on iOS 12 and below [#0869fd0](https://github.com/wix/react-native-navigation/commit/0869fd0197a621123ae16e183965dd05fdf4521d) by [danilobuerger](https://github.com/danilobuerger)
89
+ - Don't crash if specified Shared Element ID could not be found/invalid nativeID has been set [#fcf23d2](https://github.com/wix/react-native-navigation/commit/fcf23d2e283e4031767864f6360051d9326c2475) by [mrousavy](https://github.com/mrousavy)
90
+ - Fix edge case where title wasn't visible if subtitle was also declared [#1878393](https://github.com/wix/react-native-navigation/commit/1878393eb05d42bbb2099567a55cc35d6fc61595) by [yogevbd](https://github.com/yogevbd)
91
+ - Fix Bicolor status bar disappears on setRoot [#83a5afa](https://github.com/wix/react-native-navigation/commit/83a5afa84b3ed79284a1c28c4634506d0641df02) by [yogevbd](https://github.com/yogevbd)
92
+ - Remove obsolete bootstrap methods [#5c5ec9e](https://github.com/wix/react-native-navigation/commit/5c5ec9e04901b5825953e6c9e3bcb587a45984cd), [#8d9e358](https://github.com/wix/react-native-navigation/commit/8d9e35895712d8c5f6685a6f92c93429246ebb96) by [danilobuerger](https://github.com/danilobuerger)
93
+ - Support fade animation in setRoot [#acc7f12](https://github.com/wix/react-native-navigation/commit/acc7f1276803d6bdb7fa5e1affc9f958d9923466) by [yogevbd](https://github.com/yogevbd)
94
+ - Properly resolve fontFamily and fontWeight [#a3e8189](https://github.com/wix/react-native-navigation/commit/a3e8189d3725a292277c138a3da234b7864fc131) by [yogevbd](https://github.com/yogevbd)
95
+ - Fix crash when navigating to a screen without a TopBar title text from a screen with LargeTitle [#0c9c996](https://github.com/wix/react-native-navigation/commit/0c9c99691909c292f69aca16738a0aba97630e5c) by [mateioprea](https://github.com/mateioprea)
96
+ - Fix border being visible when LargeTitle is used even though `noBorder:true` was specified [#29365dc](https://github.com/wix/react-native-navigation/commit/29365dc86d92f7de2bf94231b0d59d3e2bf6c073) by [mateioprea](https://github.com/mateioprea)
97
+
98
+ #### Android
99
+
100
+ - Fixed animating images with different `scaleType` in Shared Element Trnaisiton [#382e69a](https://github.com/wix/react-native-navigation/commit/382e69abddf5eae95969e12e648f04197a7b2a89) by [guyca](https://github.com/guyca)
101
+
102
+ # 6.12.0
103
+
104
+ ## Added
105
+
106
+ ### iOS
107
+
108
+ - Enable PlatformColor / DynamicColorIOS for iOS [#57519ca](https://github.com/wix/react-native-navigation/commit/57519cab1cac1a4c6ebe9165db3bd4a4449d3720) by [danilobuerger](https://github.com/danilobuerger)
109
+
110
+ ## Fixed
111
+
112
+ - Fix option processors path resolving [#f37d465](https://github.com/wix/react-native-navigation/commit/f37d465dd7339f4e9eca4e6c27be883e711b7ff2) by [yogevbd](https://github.com/yogevbd)
113
+
114
+ ### Android
115
+
116
+ - Fix white screen when back was pressed during show modal animation [#58f72f8](https://github.com/wix/react-native-navigation/commit/58f72f8033f703b1f83c935fce7c70e67dd9b5c2) by [guyca](https://github.com/guyca)
117
+ - Fix issue where right buttons which were added with mergeOptions were not unmounted [#3c5e8e4](https://github.com/wix/react-native-navigation/commit/3c5e8e4454edef3220fa9f40025b6703446d76fa) by [guyca](https://github.com/guyca)
118
+ - Resole popToRoot promise successfully even when it's called while there's nothing to pop [#ec2b0a0](https://github.com/wix/react-native-navigation/commit/ec2b0a0e367f99807c0c67068cbcff40e6cb23a7) by [guyca](https://github.com/guyca)
119
+ - Resize title component when buttons are added to TopBar [#a66e8e9](https://github.com/wix/react-native-navigation/commit/a66e8e93b456ec911aed7a5a49c14ea0a689c0b9) by [guyca](https://github.com/guyca)
120
+
121
+ ### iOS
122
+
123
+ - Fix bug where screen became unresponsive if user tried to interact with elements during momentum scroll [#cb74af5](https://github.com/wix/react-native-navigation/commit/cb74af57f0bea7f2a4517e1f7b14959af8a79f20) by [yogevbd](https://github.com/yogevbd)
124
+ - Fix category warnings for RNNInterpolationOptions [#a13698b](https://github.com/wix/react-native-navigation/commit/a13698b0863c46fc2f708e7e6eae3f37d5f55237) by [danilobuerger](https://github.com/danilobuerger)
125
+
126
+ # 6.11.0
127
+
128
+ ## Added
129
+
130
+ - Update NavigationComponent typings - include passProps in static options generate [#813c1a2](https://github.com/wix/react-native-navigation/commit/813c1a271225a802c9f828aae798a22c47e9752d) by [guyca](https://github.com/guyca)
131
+ - Include componentId in props passed to static options generator [#c4f8eb2](https://github.com/wix/react-native-navigation/commit/c4f8eb2932a9cdb85686339282ca6cc97c6918ce) by [guyca](https://github.com/guyca)
132
+
133
+ ### iOS
134
+
135
+ - Add primaryBackgroundStyle option to splitView [#9ba863a](https://github.com/wix/react-native-navigation/commit/9ba863a5090c636c47939a709c5b8e4e81767421) by [frane](https://github.com/frane)
136
+
137
+ ## Fixed
138
+
139
+ ### iOS
140
+
141
+ - Fixed case where options were not merged correctly under certain conditions [#c9e5309](https://github.com/wix/react-native-navigation/commit/c9e5309f87bdae31cd2d90a51ead201b297bbf94) by [yogevbd](https://github.com/yogevbd)
142
+ - Fix toggling StatusBar visibility with mergeOptions [#36e0e81](https://github.com/wix/react-native-navigation/commit/36e0e81dfb796406f7a0be3861178eaa2b1c2cd5) by [yogevbd](https://github.com/yogevbd)
143
+
144
+ ### Android
145
+
146
+ - Fix button fontSize being applied in pixels instead of dp [#8d1309f](https://github.com/wix/react-native-navigation/commit/8d1309f4be88215d6c2e67a19475c88a39d3ff98) by [guyca](https://github.com/guyca)
147
+
148
+ # 6.10.0
149
+
150
+ ## Added
151
+
152
+ - New Options Processor API [#1d4d054](https://github.com/wix/react-native-navigation/commit/1d4d05460f323e31ccc87f614560f82876baa50c) by [yogevbd](https://github.com/yogevbd)
153
+
154
+ - New Layout Processor API [#4f4a04e](https://github.com/wix/react-native-navigation/commit/4f4a04e25c2d64052810b75cda1e51aafc0f1a08) by [yogevbd](https://github.com/yogevbd)
155
+
156
+ - Type component options in NavgationComponent and NavigationFunctionalComponent [#b23ab25](https://github.com/wix/react-native-navigation/commit/b23ab2598225466e1e49d7f7dd73c696060fed98)
157
+
158
+ ### Android
159
+
160
+ - Support Shared Element Transition in pop [#80a52a2](https://github.com/wix/react-native-navigation/commit/80a52a23f6d3143de10421c036c2ed9deb152589) by [guyca](https://github.com/guyca)
161
+
162
+ - Add allCaps option to TopBar buttons [#a561a80](https://github.com/wix/react-native-navigation/commit/a561a80e9dd36d5cf40b9952cab022583ed9bee5) by [guyca](https://github.com/guyca)
163
+
164
+ ### iOS
165
+
166
+ - Deprecate toggling BottomTabs on iOS [#aaef66b](https://github.com/wix/react-native-navigation/commit/aaef66b56ced621c48252d6d11a59fb3f4a1d776) by [yogevbd](https://github.com/yogevbd)
167
+
168
+ - Fabric support [#6ecdb51](https://github.com/wix/react-native-navigation/commit/6ecdb515bd1c06a923987eefcad99d02f66c3bbc) by [ericlewis](https://github.com/ericlewis)
169
+
170
+ ## Fixed
171
+
172
+ ### Android
173
+
174
+ - Fix overlay touch detection [#5e03718](https://github.com/wix/react-native-navigation/commit/5e0371885db750844989981db53c0929e98d9baf) by [guyca](https://github.com/guyca)
175
+
176
+ - Fix flickering BottomTabs when pushing a screen with waitForRender [#7add403](https://github.com/wix/react-native-navigation/commit/7add403d39a3d6eceef7c3c28443be425ecec9ef) by [guyca](https://github.com/guyca)
177
+
178
+ ### iOS
179
+
180
+ - Support calling setDefaultOptions before appLaunch event is emitted [#87e7b1a](https://github.com/wix/react-native-navigation/commit/87e7b1afa280e6788385f3fcbd29350f9149a839) by [yogevbd](https://github.com/yogevbd)
181
+
182
+ # 6.9.1
183
+
184
+ ## Fixed
185
+
186
+ ### Android
187
+
188
+ - Fix changing disabled button color [#1b291c6](https://github.com/wix/react-native-navigation/commit/1b291c63458052e44ef6b03ff7daf7e4d3dd84a4) by [guyca](https://github.com/guyca)
189
+
190
+ # 6.9.0
191
+
192
+ ## Added
193
+
194
+ - Introduced a new API to lazily register components [#81c0f87](https://github.com/wix/react-native-navigation/commit/81c0f8715f194670865e239ab6539c595b441924) by [yedidyak](https://github.com/yedidyak)
195
+
196
+ ## Fixed
197
+
198
+ ### Android
199
+
200
+ - Emit componentDidAppear after appear animation completes [#b9310bf](https://github.com/wix/react-native-navigation/commit/b9310bf7545d1c15b2f716a98aaab3eb34b4b504) by [guyca](https://github.com/guyca)
201
+ - Fix overflow menu item text color affected by `button.color` option [#2f0095f](https://github.com/wix/react-native-navigation/commit/2f0095fa238cb3f7109fa1756da1593be0ec2d3d) by [guyca](https://github.com/guyca)
202
+
203
+ ### iOS
204
+
205
+ - Fix incorrect SideMenu dimensions after orientation change [#22444b1](https://github.com/wix/react-native-navigation/commit/22444b1fc27f0dcf1a59885ec5f5656b241790c6) by [yogevbd](https://github.com/yogevbd)
206
+ - Fix back button testID option not being applied [#9676e9c](https://github.com/wix/react-native-navigation/commit/9676e9cd7895fa76c6c30254068038f1de720109) by [yogevbd](https://github.com/yogevbd)
207
+
208
+ # 6.8.0
209
+
210
+ ## Added
211
+
212
+ - Proper error handling in link script [#daa48ca](https://github.com/wix/react-native-navigation/commit/daa48caa44831efdb60a6b394eb56cf6a94b4f9f) by [eduardopelitti](https://github.com/eduardopelitti)
213
+ - Replace deprecated link process [#4c3ed45](https://github.com/wix/react-native-navigation/commit/4c3ed4511a3a7f81586705b24b36e84e21436980) by [eduardopelitti](https://github.com/eduardopelitti)
214
+ - Add NavigationFunctionComponent interface [#c56630e](https://github.com/wix/react-native-navigation/commit/c56630e1ca7ed6575ac49c0c0c53a32b7ac3ff05) by [elizabeth-dev](https://github.com/elizabeth-dev)
215
+ - Export EventsRegistry [#057f11b](https://github.com/wix/react-native-navigation/commit/057f11b8eb6180066d719e83b9a8f39fe567d1b0) by [yedidyak](https://github.com/yedidyak)
216
+
217
+ ### Android
218
+
219
+ - Implement bottomTabs.hideOnScroll [#9544f41](https://github.com/wix/react-native-navigation/commit/9544f412e88505dec5aee4472b736689a0fe249a) by [guyca](https://github.com/guyca)
220
+
221
+ ## Fixed
222
+
223
+ - Fix updateProps creating new props object [#b1a1e0d](https://github.com/wix/react-native-navigation/commit/b1a1e0d9ee5e00cd6c71ec3df2c8cc0c2c18fb7f) by [jinshin1013](https://github.com/jinshin1013)
224
+
225
+ ### iOS
226
+
227
+ - Fixes badgeColor not being applied on ios 13+ [#28928e5](https://github.com/wix/react-native-navigation/commit/28928e567edac38a99c9aa71e3749e2e32364ec5) by [DaveAdams88](https://github.com/DaveAdams88)
228
+ - Fix black/white flickering when dismissing modals [#fd38fff](https://github.com/wix/react-native-navigation/commit/fd38fffeebbfca8edd8ddebccb4002c3349e5e9f) by [simonmitchell](https://github.com/simonmitchell)
229
+ - Fix registerBottomTabSelectedListener unselected value [#fbb72f2](https://github.com/wix/react-native-navigation/commit/fbb72f25df7097f5345d4e769b8cb736e2145785) by [yogevbd](https://github.com/yogevbd)
230
+ - Fix bottomTabs long press event [#814de45](https://github.com/wix/react-native-navigation/commit/814de45558a2bc250acc9c496e3974b54888592a) by [yogevbd](https://github.com/yogevbd)
231
+ - Fix hiding the SearchBar on iOS 11+ [#58674e8](https://github.com/wix/react-native-navigation/commit/58674e8baf06b09187039897a6ba27aff99ec8cb) by [jinshin1013](https://github.com/jinshin1013)
232
+
233
+ ### Android
234
+
235
+ - Don't create Navigator if the Activity is finishing [#5c6ccd1](https://github.com/wix/react-native-navigation/commit/5c6ccd12c62190edbef4a614b24374b2402ac90c) by [JK0N](https://github.com/JK0N)
236
+ - Fix crash when disabledButtonColor is undefined and attempting to show a disabled button [#3fae8ed](https://github.com/wix/react-native-navigation/commit/3fae8ededc31e4d10e9e4153a614e9f3d159d650) by [guyca](https://github.com/guyca)
237
+ - TopBar title and subtitle font size is measured in dp instead of sp [#88e65de](https://github.com/wix/react-native-navigation/commit/88e65defb91e30292e73d228f602b126e1064b59) by [guyca](https://github.com/guyca)
238
+ - Fix crash when currentTabIndex is defined [#fbe81d0](https://github.com/wix/react-native-navigation/commit/fbe81d05b5074e82e32c08456b9688cf8c9f4a25) by [guyca](https://github.com/guyca)
239
+
240
+ # 6.7.5
241
+
242
+ ## Fixed
243
+
244
+ - Fix TypeScript compilation errors [#2225e97](https://github.com/wix/react-native-navigation/commit/2225e971265a58fec7715630d782d8a8845f48fa) by [ItsNoHax](https://github.com/ItsNoHax)
245
+
246
+ # 6.7.4
247
+
248
+ ## Fixed
249
+
250
+ ### iOS
251
+
252
+ - Fix wrong options being applied when selected tab changes [#bd710bc](https://github.com/wix/react-native-navigation/commit/bd710bc0bd91ebdc41c3ebca6cf79ad84b91738e) by [yogevbd](https://github.com/yogevbd)
253
+
254
+ # 6.7.3
255
+
256
+ ## Fixed
257
+
258
+ ### iOS
259
+
260
+ - Restore bottomTabs visibility when needed [#80eb489](https://github.com/wix/react-native-navigation/commit/80eb4893ef2c86c2e20480c61c03fc2dc99979f1) by [yogevbd](https://github.com/yogevbd)
261
+
262
+ # 6.7.2
263
+
264
+ ## Fixed
265
+
266
+ ### iOS
267
+
268
+ - Fix BottomTabs visibility not working for pushed screens and mergeOptions [#ab63850](https://github.com/wix/react-native-navigation/commit/ab63850a405d01d40689478b3f408fc30ab1d382) by [yogevbd](https://github.com/yogevbd)
269
+
270
+ # 6.7.0 - 6.7.1
271
+
272
+ ## Added
273
+
274
+ - Export TypeScript interfaces to streamline work with NavigationComponent + introduce `Navigation.events().registerComponentListener()` api [#ec7f324](https://github.com/wix/react-native-navigation/commit/ec7f32404d1a8cba79517f12c36eccaa4b13d3e2) by [yogevbd](https://github.com/yogevbd)
275
+
276
+ ## Fixed
277
+
278
+ - Unmount previous root before resolving setRoot promise [#86b344c](https://github.com/wix/react-native-navigation/commit/86b344c7a287815a79891d7a9491c893c8081339) by [guyca](https://github.com/guyca) and [yogevbd](https://github.com/yogevbd)
279
+ - Ensure component generator passed to Navigation.registerComponent is invoked only once [#8ec7bcd](https://github.com/wix/react-native-navigation/commit/8ec7bcd83ae7fc721ce026cd11fb62df136edeac) by [guyca](https://github.com/guyca)
280
+
281
+ ### Android
282
+
283
+ - Fix updating button options with mergeOptions [#b2df65a](https://github.com/wix/react-native-navigation/commit/b2df65a5fb245f123ea96cd2785ebc065cb065ea) by [guyca](https://github.com/guyca)
284
+ - Fix react-native-youtube support [#4d8d2ae](https://github.com/wix/react-native-navigation/commit/4d8d2ae40a0455fb5187cb965213fe350052bc50) by [guyca](https://github.com/guyca)
285
+ - Fix sideMenu.enabled option getting cleared when set on one drawer and the other drawer is opened [#67191e9](https://github.com/wix/react-native-navigation/commit/67191e9e7c915d612f83136e47000ed6311591e1) by [guyca](https://github.com/guyca)
286
+ - Mount all stack children after initial child is mounted [#a1beebe](https://github.com/wix/react-native-navigation/commit/a1beebe74beb265ed196e9e322a85aa40b84aa98) by [guyca](https://github.com/guyca)
287
+ - Fix flickering FAB when changing bottom tabs [#9a8bc54](https://github.com/wix/react-native-navigation/commit/9a8bc54dd41f91fbc90c3d8e44f02884dcdaa02c) by [guyca](https://github.com/guyca)
288
+ - Fix touch handling in nested Touchables in an Overlay [#851703c](https://github.com/wix/react-native-navigation/commit/851703c0caa75e4b6d8ad66f672ad0dc855842c4) by [guyca](https://github.com/guyca)
289
+
290
+ ### iOS
291
+
292
+ - Send screen popped event only for rnn components [#0b7507d](https://github.com/wix/react-native-navigation/commit/0b7507d75f05590af7c933d5949b01aa7db04993) by [yogevbd](https://github.com/yogevbd)
293
+ - Fix bottomTabs visibility issues [#4e1ac71](https://github.com/wix/react-native-navigation/commit/4e1ac713944373d8d2c5b251912e1a872b2d00a7) by [yogevbd](https://github.com/yogevbd)
294
+
295
+ # 6.6.0
296
+
297
+ ## Fixed
298
+
299
+ ### Android
300
+
301
+ - Fix showing Modal from TopBar components in RN 62 [94862ed](https://github.com/wix/react-native-navigation/commit/94862ed66883646d636be95aeaaccd40394b8082) by [guyca](https://github.com/guyca)
302
+
303
+ # 6.5.0
304
+
305
+ ## Added
306
+
307
+ ### Android
308
+
309
+ - Added `width` and `height` options to button component which can be used to set exact measurements to button components [#42a6917](https://github.com/wix/react-native-navigation/commit/42a6917eeee149f7348a4eaf524ba76bac1240cf) by [guyca](https://github.com/guyca)
310
+ - Reuse button component if a component with the same id already exists [#42a6917](https://github.com/wix/react-native-navigation/commit/42a6917eeee149f7348a4eaf524ba76bac1240cf) by [guyca](https://github.com/guyca)
311
+ - Allow hiding the NavigationBar [#7f6353b](https://github.com/wix/react-native-navigation/commit/7f6353bcead9c6d6e87d72574e0fec29ad9f2d19) by [M-i-k-e-l](https://github.com/M-i-k-e-l)
312
+ - Support `rotation` animation in shared element transition [#03dd211](https://github.com/wix/react-native-navigation/commit/03dd211a5425cf14586ef49814c1d3716aeb8441) by [guyca](https://github.com/guyca)
313
+ - Implement shared element transition `interpolation` option [#e80eb92](https://github.com/wix/react-native-navigation/commit/e80eb9275a04921976127f8c2775f37088f133c1) by [guyca](https://github.com/guyca)
314
+ - Implement shared element transition `startDelay` option [#334ab71](https://github.com/wix/react-native-navigation/commit/334ab7174a599f18af66eca6cee7409bee7537e7) by [guyca](https://github.com/guyca)
315
+
316
+ ### iOS
317
+
318
+ - Implement rotate animation for shared element transition [#5d9e910](https://github.com/wix/react-native-navigation/commit/5d9e9100b771ca76ac20b916f945406460084b9b) by [yogevbd](https://github.com/yogevbd)
319
+
320
+ ## Fixed
321
+
322
+ ### iOS
323
+
324
+ - Fixed invalid modalPresentationStyle.popover enum value [#951a07b](https://github.com/wix/react-native-navigation/commit/951a07bb5571dbda2a0c9b665969bc25fc5ae784) by [rfnd](https://github.com/rfnd)
325
+ - Fix incorrect layout after changing BottomTabs visibility [#21cafcd](https://github.com/wix/react-native-navigation/commit/21cafcdecca8264dd2157d172dab24d8d4b5b4e6) by [yogevbd](https://github.com/yogevbd)
326
+ - Fix SafeAreaView measurement in SideMenu [#0da097e](https://github.com/wix/react-native-navigation/commit/0da097ef8471670e6550152fa5ebbdf4a02b3478) by [rfnd](https://github.com/rfnd)
327
+ - Fix backButton.color change on mergeOptions [#da0fd19](https://github.com/wix/react-native-navigation/commit/da0fd194f88b8f1042a0fe74bbf91e75ffac95b3) by [yogevbd](https://github.com/yogevbd)
328
+ - Fix bottomTab colors in landscape orientation [#89402dc](https://github.com/wix/react-native-navigation/commit/89402dc31a3769b4fb1326b95170961497011caf) by [yogevbd](https://github.com/yogevbd)
329
+ - FIx screenPopped event not emitted if screen is popped with pop command [#2f31a2f](https://github.com/wix/react-native-navigation/commit/2f31a2fa703659f153162274c846a8f137ee94d1) by [yogevbd](https://github.com/yogevbd)
330
+
331
+ ### Android
332
+
333
+ - Set textual TopBar button style options by spans instead of applying them on the view [#42a6917](https://github.com/wix/react-native-navigation/commit/42a6917eeee149f7348a4eaf524ba76bac1240cf) by [guyca](https://github.com/guyca)
334
+ - Ensure Component layout is not created prematurely by mergeOptions [#111df5a](https://github.com/wix/react-native-navigation/commit/111df5a3ba51ba6762cffd7119071bb4f71d18f7) by [guyca](https://github.com/guyca)
335
+ - Resolve tabsAttachMode from default options [#a4b2c76](https://github.com/wix/react-native-navigation/commit/a4b2c76a9d9b934192a4deee496c3ecef4c184ff) by [guyca](https://github.com/guyca)
336
+ - Support declaring currentTabIndex and currentTabId in default options [#3e5be29](https://github.com/wix/react-native-navigation/commit/3e5be29af8b1b78be1eec9ebf970b9204354a052) by [guyca](https://github.com/guyca)
337
+ - Fix BottomTabs size not adjusted after orientation change [#aa7908c](https://github.com/wix/react-native-navigation/commit/aa7908c57d141c7bb49de64a8e071330a8f7af31) by [guyca](https://github.com/guyca)
338
+
339
+ # 6.4.0
340
+
341
+ ## Fixed
342
+
343
+ ### iOS
344
+
345
+ - Fix styling options on iOS 13.4 [#950ac64](https://github.com/wix/react-native-navigation/commit/950ac6404fe1a43021426803d4fdad4ed4711476) by [yogevbd](https://github.com/yogevbd)
346
+ - Fix white flicker when pushing a screen [#a2bdfac](https://github.com/wix/react-native-navigation/commit/a2bdfacb27065f2101c3228df98484ba4ec68e03) by [RobertPaul01](https://github.com/RobertPaul01)
347
+ - Fix white topBar on pop with swipe gesture [#6227321](https://github.com/wix/react-native-navigation/commit/62273214f0590007ce81be2aef6da1f05e035c4a) by [yogevbd](https://github.com/yogevbd)
348
+
349
+ ### Android
350
+
351
+ - Fix title component not being replaced via mergeOptions [#b0e8a82](https://github.com/wix/react-native-navigation/commit/b0e8a824f5e1ec141c9d3030dc21f242902ec29f) by [guyca](https://github.com/guyca)
352
+
353
+ # 6.3.3
354
+
355
+ ## Fixed
356
+
357
+ ### iOS
358
+
359
+ - Fix status bar visibility on iOS 13 [#f487134](https://github.com/wix/react-native-navigation/commit/f487134d8e4c302f69453c093c49fde17dba46fe) by [yogevbd](https://github.com/yogevbd)
360
+
361
+ # 6.3.1 - 6.3.2
362
+
363
+ ## Added
364
+
365
+ - Custom component reference id OptionsTopBarButton typing [#6046372](https://github.com/wix/react-native-navigation/commit/60463729e5e4ace5c4c81ddc854ee2421b431c86) by [jarnove](https://github.com/jarnove)
366
+
367
+ ## Fixed
368
+
369
+ ### Android
370
+
371
+ - Always resolve dismissAllModals promise [#ec03383](https://github.com/wix/react-native-navigation/commit/ec03383b0de4fe092ddbef807850d131a42a1e7f) [#52bcd5b](https://github.com/wix/react-native-navigation/commit/52bcd5ba5090622db37055d0a18cb673673affa0) by [guyca](https://github.com/guyca)
372
+
373
+ # 6.3.0
374
+
375
+ ## Fixed
376
+
377
+ ### iOS
378
+
379
+ - Fix symbol collision with react-native-keyboard-input [#8ad40e1](https://github.com/wix/react-native-navigation/commit/8ad40e1ab23116d432e888801c07b57c6c09ad37) by [yogevbd](https://github.com/yogevbd)
380
+ - Fix overlays touch interception on new iPads [#2ed434c](https://github.com/wix/react-native-navigation/commit/2ed434c952b7c9326d9547005caa8c0601e58cb4)
381
+ - Removes unable to find UIManager module warning [#ba12604](https://github.com/wix/react-native-navigation/commit/ba1260402cc15409ddfef46fd5cad180d5e1a60f)
382
+ - Reject pop command when viewController not found in the hierarchy [#4413aa4](https://github.com/wix/react-native-navigation/commit/4413aa4a76628449116cf9bc7294696a490d6a65)
383
+ - Fix mergeOptions merging options with wrong child [#3c38c50](https://github.com/wix/react-native-navigation/commit/3c38c50a8b53e958a21e6fb7453622463e9870ff)
384
+ - Fix build warnings and possible retain cycles issues [#3f8577d](https://github.com/wix/react-native-navigation/commit/3f8577da7d23a2e4698d27d12bf9de55be39e7ef)
385
+ - Fix bottomTab icon hidden after setting badge [#124f975](https://github.com/wix/react-native-navigation/commit/124f975f42ebaf124d9e7c58296eaafd0f617ad9) by [yogevbd](https://github.com/yogevbd)
386
+
387
+ # 6.2.0
388
+
389
+ ## Added
390
+
391
+ - Add windows support to build scripts vai `npm run start-windows` command [#afb5bff](https://github.com/wix/react-native-navigation/commit/afb5bffb49b9e8c670419aaacedf10f65cf82fd2) by [mayconmesquita](https://github.com/mayconmesquita)
392
+
393
+ ## Fixed
394
+
395
+ ### iOS
396
+
397
+ - Fix largeTitle background color on iOS 13 no being applied [#979cb6e](https://github.com/wix/react-native-navigation/commit/979cb6e08f80bd0b6b8e9286eb21d3c255c88312) by [yogevbd](https://github.com/yogevbd)
398
+ - Fix bottomTabs attach mode not working when BottomTabs are inside SideMenu [#7d6029f](https://github.com/wix/react-native-navigation/commit/7d6029f06bd3b4f4336d0d50a1621a5291e43fa7) by [yogevbd](https://github.com/yogevbd)
399
+ - Fix crash on iOS 10 when displaying stack layouts [#e923b8c](https://github.com/wix/react-native-navigation/commit/e923b8c02204e31d1ce6781dab11ebeabc2af218) [RomualdPercereau](https://github.com/RomualdPercereau)
400
+
401
+ # 6.1.2
402
+
403
+ ## Fixed
404
+
405
+ ### iOS
406
+
407
+ - Fix modal presentation style not being applied on some layouts [#931167e](https://github.com/wix/react-native-navigation/commit/931167e039000502d4198244c450dacce3c39809) by [yogevbd](https://github.com/yogevbd)
408
+ - Fix truncated bottomTab.text with semibold fontWeight [#b01629c](https://github.com/wix/react-native-navigation/commit/b01629c41da9197ee0737c937c02684c73dd9042) by [yogevbd](https://github.com/yogevbd)
409
+ - Always drawBehind bottomTabs and topBar when translucent: true [#6edbbf5](https://github.com/wix/react-native-navigation/commit/6edbbf512f2230ee0bceaf73c7895bca90475700) by [yogevbd](https://github.com/yogevbd)
410
+ - drawBehind when largeTitle is visible - fixes black large title [#6edbbf5](https://github.com/wix/react-native-navigation/commit/6edbbf512f2230ee0bceaf73c7895bca90475700) by [yogevbd](https://github.com/yogevbd)
411
+
412
+ # 6.1.1
413
+
414
+ ## Fixed
415
+
416
+ ### iOS
417
+
418
+ - Create new UITabBarItem instance on each bottomTab update [#3757ff7](https://github.com/wix/react-native-navigation/commit/3757ff7aa64cc9b6b8054af3e27b3865e27b2f9f) by [yogevbd](https://github.com/yogevbd)
419
+ - Delete duplicate misplaced files in root directory [#6d61ec0](https://github.com/wix/react-native-navigation/commit/6d61ec0e6cabeddc41b5860b4cb5b24f3de92dc2) by [ItsNoHax](https://github.com/ItsNoHax)
420
+
421
+ # 6.1.0
422
+
423
+ ## Added
424
+
425
+ - Add componentName to modalDismiss event [#1c2558d](https://github.com/wix/react-native-navigation/commit/1c2558d77e489e2a35adc3a60eebed97ebf52add) by [jinshin1013](https://github.com/jinshin1013)
426
+
427
+ ## Fixed
428
+
429
+ ### iOS
430
+
431
+ - Support changing backButton fontFamily and fontSize [#b438588](https://github.com/wix/react-native-navigation/commit/b4385883de9ff07ed8915cdcd6f78ddc26bb6691) by [yogevbd](https://github.com/yogevbd)
432
+ - Fixed bottomTab text color not working correctly on iOS13 [#211a46e](https://github.com/wix/react-native-navigation/commit/211a46e087213bc72c166a4332cd1d3d0fa01be2) by [yogevbd](https://github.com/yogevbd)
433
+ - Support backButton.testID [#e1b76c1](https://github.com/wix/react-native-navigation/commit/e1b76c1fe222a4153eddedf43caba5dd457aadb9) by [yogevbd](https://github.com/yogevbd)
434
+ - Handle statusBar.visible in all layout types and not only in components [#a2f5dbd](https://github.com/wix/react-native-navigation/commit/a2f5dbd3131f2cc158a650a01a1b9e271c2952f2) by [yogevbd](https://github.com/yogevbd)
435
+ - Fix a lot of large title issues [#54b2855](https://github.com/wix/react-native-navigation/commit/54b285531ea43e0dae76ae08af7de923ccf5917c)
436
+ - Fix title and subtitle color animations when popping screens [#5210848](https://github.com/wix/react-native-navigation/commit/52108484cc59ad8aaec9ef51b3c370c7ac80128f) by [yogevbd](https://github.com/yogevbd)
437
+
438
+ ### Android
439
+
440
+ - Stop rejecting dismissAllModals promise if no modals are displayed [#30b0b47](https://github.com/wix/react-native-navigation/commit/30b0b47b712cd1882b9c944a125c9d06ca5e0dd8) by [guyca](https://github.com/guyca)
441
+ - Support tabs without icons on Android [#ef58a6c](https://github.com/wix/react-native-navigation/commit/ef58a6cdeb1c4ea90ff528af50d6d2dc572f9f28) by [guyca](https://github.com/guyca)
442
+ - Fix autolink script - set minSdk to 19 [#4ce0e89](https://github.com/wix/react-native-navigation/commit/4ce0e89b06b9ab29d4be5d2eb0d11419deaade7a) by [jinshin1013](https://github.com/jinshin1013)
443
+ - ExternalComponentController extends ViewController [#c33ff12](https://github.com/wix/react-native-navigation/commit/c33ff1291ded4b171ef7b3f0736c5bc5b169d850) by [guyca](https://github.com/guyca)
444
+ - Support [react-native-youtube](https://github.com/davidohayon669/react-native-youtube) [#2793a02](https://github.com/wix/react-native-navigation/commit/2793a022729043d271fa6ffd80df62297c5f76fa)
445
+
446
+ # 6.0.1
447
+
448
+ ## Fixed
449
+
450
+ ### iOS
451
+
452
+ - Fix applying drawBehind through mergeOptions [#e002a68](https://github.com/wix/react-native-navigation/commit/e002a68110cb75877982aed9c693ece8382c7942) by [yogevbd](https://github.com/yogevbd)
453
+
454
+ # 6.0.0
455
+
456
+ This release changes how layout.backgroundColor work on iOS to add parity with Android.
457
+
458
+ - layout.backgroundColor - applies background color to parent layouts (Stack, BottomTabs, SideMenu etc)
459
+ - layout.componentBackgroundColor - applies background color only to components
460
+
461
+ ## Fixed
462
+
463
+ ### Android
464
+
465
+ - Fix custom push animations not working [#c9232cb](https://github.com/wix/react-native-navigation/commit/c9232cb9e49e02cd1975d16de01fa2a6186032b0) by [guyca](https://github.com/guyca)
466
+
467
+ ### iOS
468
+
469
+ - Remove draw behind deprecation [#950642d](https://github.com/wix/react-native-navigation/commit/950642d48b2ec67f510ae6b3eefaaeb1ebfcf43d) by [yogevbd](https://github.com/yogevbd)
470
+ - Fix layout.backgroundColor being applied to components, it's now applied to parent layouts [#950642d](https://github.com/wix/react-native-navigation/commit/950642d48b2ec67f510ae6b3eefaaeb1ebfcf43d) by [yogevbd](https://github.com/yogevbd)
471
+ - Implement layout.componentBackgroundColor which is applied only to component ViewControllers [#950642d](https://github.com/wix/react-native-navigation/commit/950642d48b2ec67f510ae6b3eefaaeb1ebfcf43d) by [yogevbd](https://github.com/yogevbd)
472
+
473
+ # 5.1.1
474
+
475
+ ## Fixed
476
+
477
+ ### iOS
478
+
479
+ - Apply extendedLayoutIncludesOpaqueBars true on all viewControllers (this commit was originally added to v4 and was left out of v5 my mistake) [#9fefeca](https://github.com/wix/react-native-navigation/commit/9fefeca9be9844fc80f839a532c97f5c4fa1d299)
480
+
481
+ ### Android
482
+
483
+ - Fix crash when mergeOptions were called before stack view was created [#defc2aa](https://github.com/wix/react-native-navigation/commit/defc2aaa6e7c845c05cabe8c5753cc6a68ab5830) by [guyca](https://github.com/guyca)
484
+
485
+ # 5.1.0
486
+
487
+ ## Added
488
+
489
+ ### iOS
490
+
491
+ - Add window.backgroundColor option [#c99ecf9](https://github.com/wix/react-native-navigation/commit/c99ecf9b145f453a9674c965d1634bcdece973b6) by [yogevbd](https://github.com/yogevbd)
492
+
493
+ # 5.0.0
494
+
495
+ This release is focuses on shared element transition and on improving the installation process of the library.
496
+
497
+ ## Upgrading from V4
498
+
499
+ ### Remove missingDimensionStrategy from app/build.gradle
500
+
501
+ Since RNN supports multiple react-native versions, the library has multiple flavors, each targeting a different RN version. We now chose the appropriate flavor based on the react-native version installed in node_modules.
502
+
503
+ ```diff
504
+ -missingDimensionStrategy "RNN.reactNativeVersion", "reactNativeXX" // Where XX is the minor number of the react-native version you're using
505
+ ```
506
+
507
+ ### Declare Kotlin version in build.gradle
508
+
509
+ We're starting to migrate RNN to Kotlin. All new code is written in Kotlin and existing code will be gradually converted to Kotlin. This requires you to declare the Kotlin version you're using in your project.
510
+
511
+ ```diff
512
+ buildscript {
513
+ ext {
514
+ + kotlinVersion = "1.3.61" // Or any other kotlin version following 1.3.x
515
+ + RNNKotlinVersion = kotlinVersion
516
+ + RNNKotlinStdlib = "kotlin-stdlib-jdk8"
517
+ }
518
+ dependencies {
519
+ + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
520
+ }
521
+ }
522
+ ```
523
+
524
+ ### Update MainApplication.java
525
+
526
+ In an effort to simplify RNN's integrations process as much as possible, we're minimizing the changes required to both MainApplication and MainActivity.
527
+
528
+ ```diff
529
+ +import com.facebook.react.PackageList;
530
+
531
+ public class MainApplication extends NavigationApplication {
532
+ - @Override
533
+ - protected ReactNativeHost createReactNativeHost() {
534
+ - return new NavigationReactNativeHost(this) {
535
+ + private final ReactNativeHost mReactNativeHost =
536
+ new NavigationReactNativeHost(this) {
537
+ @Override
538
+ protected String getJSMainModuleName() {
539
+ return "index";
540
+ }
541
+
542
+ + @Override
543
+ + public boolean getUseDeveloperSupport() {
544
+ + return BuildConfig.DEBUG;
545
+ + }
546
+
547
+ + @Override
548
+ + public List<ReactPackage> getPackages() {
549
+ + ArrayList<ReactPackage> packages = new PackageList(this).getPackages();
550
+ + return packages;
551
+ + }
552
+ + }
553
+ - }
554
+
555
+ + @Override
556
+ + public ReactNativeHost getReactNativeHost() {
557
+ + return mReactNativeHost;
558
+ + }
559
+
560
+ - @Override
561
+ - public boolean isDebug() {
562
+ - return BuildConfig.DEBUG;
563
+ - }
564
+
565
+ - @Nullable
566
+ - @Override
567
+ - public List<ReactPackage> createAdditionalReactPackages() {
568
+ - List<ReactPackage> packages = new ArrayList<>();
569
+ - return packages;
570
+ - }
571
+ }
572
+ ```
573
+
574
+ ### Update settings.gradle
575
+
576
+ Since RNN now supports auto linking, declaring the dependency manually is no longer needed.
577
+
578
+ ```diff
579
+ -include ':react-native-navigation'
580
+ -project(':react-native-navigation').projectDir = new File(rootProject.projectDir, '../../lib/android/app/')
581
+ ```
582
+
583
+ ### Make sure your app supports auto linking
584
+
585
+ #### Update `app/build.gradle`
586
+
587
+ Add these lines to the bottom of your `app/build.gradle` file.
588
+
589
+ ```diff
590
+ +apply from: file("../../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle")
591
+ +applyNativeModulesAppBuildGradle(project)
592
+ ```
593
+
594
+ #### Update `settings.gradle`
595
+
596
+ ```diff
597
+ +apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle")
598
+ +applyNativeModulesSettingsGradle(settings)
599
+ include ':app'
600
+ ```
601
+
602
+ ### Remove RNN pod from podspec
603
+
604
+ As RNN is now autolinked, remove its pod from your podspec file. This will ensure the correct version is linked when running `pod install`
605
+
606
+ ```diff
607
+ - pod 'ReactNativeNavigation', :podspec => '../node_modules/react-native-navigation/ReactNativeNavigation.podspec'
608
+ ```
609
+
610
+ ## Breaking Changes
611
+
612
+ ### Modal animation parity
613
+
614
+ show and dismiss animation api have been fixed and are now in parity with Android api.
615
+ If you've defined a custom modal animation, you can now consolidate the animation declarations.
616
+
617
+ <table>
618
+ <tr>
619
+ <td>New Android + iOS API</td>
620
+ <td>Unsupported iOS API</td>
621
+ </tr>
622
+ <tr>
623
+ <td>
624
+
625
+ ```js
626
+ options: {
627
+ animations: {
628
+ showModal: {
629
+ alpha: {
630
+ from: 0,
631
+ to: 1,
632
+ duration: 250,
633
+ }
634
+ }
635
+ }
636
+ }
637
+ ```
638
+
639
+ </td>
640
+ <td>
641
+
642
+ ```js
643
+ options: {
644
+ animations: {
645
+ showModal: {
646
+ content: {
647
+ alpha: {
648
+ from: 0,
649
+ to: 1,
650
+ duration: 250
651
+ }
652
+ }
653
+ }
654
+ }
655
+ }
656
+ ```
657
+
658
+ </td>
659
+ </tr>
660
+ </table>
661
+
662
+ ### drawBehind is deprecated on iOS
663
+
664
+ > ❗️topBar and bottomTabs drawBehind option will be removed in the next major version.
665
+
666
+ The drawBehind option has been an anti pattern on iOS from the start and was introduced only for parity with Android api.
667
+ On iOS, when a ScrollView or a SafeAreaView are used as screen root; the system handles insets automatically.
668
+ As adoption of notch devices increases, developers use these views regularly, rendering the drawBehind option useless.
669
+
670
+ > **During the migration phase, leave Android options unchanged and set `drawBehind: true` to both TopBar and BottomTabs in default options.**
671
+
672
+ ### Android: Animation values are now declared in dp
673
+
674
+ If you're animating `translationY` or `translationX` pass these values in dp instead of pixels.
675
+ This is especially relevant to values returned by `await Navigation.constants()` api as these values are returned in dp. Now, if you'd like to use them in animations, you can do so without converting to pixels.
676
+
677
+ # 4.8.1
678
+
679
+ ## Fixed
680
+
681
+ ### Android
682
+
683
+ - Fix NPE when showing Overlay [#bfde34a](https://github.com/wix/react-native-navigation/commit/bfde34a5862c971587583aa52cb450cf526d5c66) by [guyca](https://github.com/guyca)
684
+
685
+ ### iOS
686
+
687
+ - Fix overlays touch interception on new iPads [#433f48b](https://github.com/wix/react-native-navigation/commit/433f48b59d9be5aa328361654341afa8414c2e21) by [yogevbd](https://github.com/yogevbd)
688
+
689
+ # 4.8.0
690
+
691
+ ## Fixed
692
+
693
+ ### Android
694
+
695
+ - Support react-native-youtube [#ffbd288](https://github.com/wix/react-native-navigation/commit/ffbd2882b24109ff8f2b51ca3c8c88822cc9afb7) by [guyca](https://github.com/guyca)
696
+
697
+ ### iOS
698
+
699
+ - Fix wrong SafeAreaView margins when using bottomTabs.drawBehind: true [#527fd49](https://github.com/wix/react-native-navigation/commit/527fd49f2f1517143032a8b14f6ab17d2f74c032) by [yogevbd](https://github.com/yogevbd)
700
+
701
+ # 4.7.1
702
+
703
+ ## Fixed
704
+
705
+ - Move selectTabOnPress prop to correct interface [#d6ead65](https://github.com/wix/react-native-navigation/commit/d6ead65c9331f12d3f79fc3b5bb7e0a0de80816e) by [phanghos](https://github.com/phanghos)
706
+
707
+ ### iOS
708
+
709
+ - Fix external components layout measurement [#1961181](https://github.com/wix/react-native-navigation/commit/196118186fb788200dafcc1e11cd9f7d6e3f6dda) by [yogevbd](https://github.com/yogevbd)
710
+
711
+ # 4.7.0
712
+
713
+ ## Added
714
+
715
+ - On tab press event - handle tab selection in Js [#b153142](https://github.com/wix/react-native-navigation/commit/b1531428a0a9608b5d1c84547f228d5de0c1aca2) by [pontusab](https://github.com/pontusab)
716
+ - RN 0.62 support on Android [#4bfa7c5](https://github.com/wix/react-native-navigation/commit/4bfa7c5092ac0ca6708b4bd61bd63e59601e8f3e) by [safaiyeh](https://github.com/safaiyeh)
717
+
718
+ ## Fixed
719
+
720
+ ### Android
721
+
722
+ - Fix dotIndicator not respecting initial visibility option [#d9bd03f](https://github.com/wix/react-native-navigation/commit/d9bd03fea7465acadb6ef17613f8fe98e8be4eb1) by [itsam](https://github.com/itsam)
723
+
724
+ ### iOS
725
+
726
+ - Set default fontsize value for title and subtitle [#0741799](https://github.com/wix/react-native-navigation/commit/0741799281a43380bc419886a19a8e72fc32d042) by [maryjenel](https://github.com/maryjenel)
727
+ - Respect default options when updating bottomTab options [#513138e](https://github.com/wix/react-native-navigation/commit/513138ebd9c620ba9e8d2b8a4a154ced790de1b2) by [yogevbd](https://github.com/yogevbd)
728
+
729
+ # 4.6.0
730
+
731
+ ## Added
732
+
733
+ ### Android
734
+
735
+ - Adapt NavigationBar buttons color according to NavigationBar background color [#6521177](https://github.com/wix/react-native-navigation/commit/65211775f6b354945a9dc5a3f7791ddfdd20ebab) by [rverbytskyi](https://github.com/rverbytskyi)
736
+
737
+ ## Fixed
738
+
739
+ ### Android
740
+
741
+ - Disable TopBar scroll when nestedScrollEnabled is enabled [#9a361a4](https://github.com/wix/react-native-navigation/commit/9a361a4fe340f5af18e1fa87b02f5e7e1f41646d) by [guyca](https://github.com/guyca)
742
+ - Reject promise when trying to push two children with same id [#27ceea8](https://github.com/wix/react-native-navigation/commit/27ceea8fb92506fdd756e45768e7235e3e7babc6) by [guyca](https://github.com/guyca)
743
+ - Fix drawBehind in default options not working [#0e93366](https://github.com/wix/react-native-navigation/commit/0e933661aed9cb4a6cad6e1e1fa5a352f371f754) by [guyca](https://github.com/guyca)
744
+
745
+ ### iOS
746
+
747
+ - Fix merge options leaks to next screen in stack [#386bf65](https://github.com/wix/react-native-navigation/commit/386bf65d251f0c6582de2cf529487dfafc69bc9d) by [yogevbd](https://github.com/yogevbd)
748
+ - Invoke all commands on the main thread [#8843224](https://github.com/wix/react-native-navigation/commit/8843224a9aed33a9fd92323db48ab80f50cae72f) by [yogevbd](https://github.com/yogevbd)
749
+ - Resolve navigationItem from external component [#d81b0bf](https://github.com/wix/react-native-navigation/commit/d81b0bf3cf929136218a71dbc74dcbf0cc668886) by [yogevbd](https://github.com/yogevbd)
750
+ - Fix popGesture freezes the app [#37473f8](https://github.com/wix/react-native-navigation/commit/37473f88e9bfdc847f25cd21e5ca521e31157268) by [yogevbd](https://github.com/yogevbd)
751
+
752
+ # 4.5.4
753
+
754
+ - Fix title.component fill parent [#7e6b2be](https://github.com/wix/react-native-navigation/commit/7e6b2be676382db74bd393940ddfdea3a3847e2c) by [yogevbd](https://github.com/yogevbd)
755
+
756
+ # 4.5.2 - 4.5.3
757
+
758
+ ## Fixed
759
+
760
+ ### Android
761
+
762
+ - Fix NPE when updating tabs before tab views are created [#fccfb4d](https://github.com/wix/react-native-navigation/commit/fccfb4d8c289c10b6424e38690fa4469fa65b7ea) by [guyca](https://github.com/guyca)
763
+
764
+ # 4.5.1
765
+
766
+ ## Fixed
767
+
768
+ ### iOS
769
+
770
+ - Fix crash when check UIBarButtonItem are not added by RNN [#233820e](https://github.com/wix/react-native-navigation/commit/233820ef372042d4fae463b0a63f75bfeab160da) by [wixiosalex](https://github.com/wixiosalex)
771
+
772
+ # 4.5.0
773
+
774
+ ## Added
775
+
776
+ - Improve accessibility support [#07c558c](https://github.com/wix/react-native-navigation/commit/07c558c76f7bf3acd56a2af4e0e901c81ae0e49d), [#f635b5e](https://github.com/wix/react-native-navigation/commit/f635b5e8be81ee99aaf2726c989624b1dafcbf41) by [yogevbd](https://github.com/yogevbd) and [guyca](https://github.com/guyca)
777
+
778
+ ### iOS
779
+
780
+ - Add modalAttemptedToDismiss event [#87af42a](https://github.com/wix/react-native-navigation/commit/87af42a56be7deaa32678afb72846c92e293f524) by [manicantic](https://github.com/manicantic)
781
+ - Add bottomTabLongPressed event on iOS [#c425f83](https://github.com/wix/react-native-navigation/commit/c425f837b1d99a8b27525d52b6eba37fb77cbded) by [N3TC4T](https://github.com/N3TC4T)
782
+
783
+ ## Fixed
784
+
785
+ ### Android
786
+
787
+ - Emit modalDismissed event before ViewController is destroyed [#cf591d9](https://github.com/wix/react-native-navigation/commit/cf591d9a9c48ed89c7e7fed4594b8dbcb9732bc9) by [guyca](https://github.com/guyca)
788
+
789
+ # 4.4.0
790
+
791
+ ## Added
792
+
793
+ ### Android
794
+
795
+ - Added TitleState showWhenActiveForce option for bottomTabs [#cf18e2d](https://github.com/wix/react-native-navigation/commit/cf18e2d3c98785c28d42b486b70e05b75404ca54) by [BenJeau](https://github.com/BenJeau)
796
+
797
+ ## Fixed
798
+
799
+ ### Android
800
+
801
+ - Apply BottomTabs visibility only if child is visible [#6ffb301](https://github.com/wix/react-native-navigation/commit/6ffb3011f7e3db11c9dac9d4c9d01b8345079c2e) by [guyca](https://github.com/guyca)
802
+
803
+ ## Fixed
804
+
805
+ # 4.3.0
806
+
807
+ ## Fixed
808
+
809
+ ### iOS
810
+
811
+ - Fixed pushing external ViewControllers to stack inside a modal [#4b14c87](https://github.com/wix/react-native-navigation/commit/4b14c8798b4f9bf99ce36dd29b2df8e8ff5bf109) by [yogevbd](https://github.com/yogevbd)
812
+
813
+ # 4.2.0
814
+
815
+ ## Fixed
816
+
817
+ ### Android
818
+
819
+ - Support hiding back button with mergeOptions [#3f17dc4](https://github.com/wix/react-native-navigation/commit/3f17dc4a82657c6cfdbdd82c95cbba6f2bf63f55) by [guyca](https://github.com/guyca)
820
+
821
+ # 4.1.0
822
+
823
+ ## Added
824
+
825
+ - Send componentType field in componentDidAppear and componentDidDisappear events [#3878b68](https://github.com/wix/react-native-navigation/commit/3878b683ccc045f6c732850833be0633a8ac1b0e) by [guyca](https://github.com/guyca) and [yogevbd](https://github.com/yogevbd)
826
+
827
+ ## Fixed
828
+
829
+ - Add typing for children on TopTabs [#1f611c6](https://github.com/wix/react-native-navigation/commit/1f611c657ff946493aced56758399f7c240bf002) by [aalises](https://github.com/aalises)
830
+
831
+ ### Android
832
+
833
+ - Apply translucent StatusBAr flag only if needed [#6782362](https://github.com/wix/react-native-navigation/commit/6782362035228463701003cc7fbbbc0af27d88d0) by [guyca](https://github.com/guyca)
834
+
835
+ ### iOS
836
+
837
+ - Fix topBar.title.component measurement on iOS 10 [#82e4807](https://github.com/wix/react-native-navigation/commit/82e48079dc4ef24639b215af83d1344aa021c281) by [yogevbd](https://github.com/yogevbd)
838
+ - Remove yellow boxes from title and button components [#b82d87f](https://github.com/wix/react-native-navigation/commit/b82d87f0c88d1dcd803af0f8507935a1d818bae3) by [yogevbd](https://github.com/yogevbd)
839
+
840
+ # 4.0.9
841
+
842
+ ## Fixed
843
+
844
+ ### iOS
845
+
846
+ - Force translucent on iOS 12 when background is transparent [#2ad41f3](https://github.com/wix/react-native-navigation/commit/2ad41f3adb9883fa20f1d52fcbbc6fd0750976f9) by [yogevbd](https://github.com/yogevbd)
847
+
848
+ # 4.0.8
849
+
850
+ ## Fixed
851
+
852
+ ### iOS
853
+
854
+ - Fix TopBar background color on iOS12 [#f202c7e](https://github.com/wix/react-native-navigation/commit/f202c7ec03bcc6cf9d2bc1c587064b78e111432a) by [yogevbd](https://github.com/yogevbd)
855
+
856
+ # 4.0.7
857
+
858
+ ## Added
859
+
860
+ - Add screenPopped event [#71af559](https://github.com/wix/react-native-navigation/commit/71af55968db11315cd10aac2e64cb1e24f37c0e0) by [yogevbd](https://github.com/yogevbd) and [guyca](https://github.com/guyca)
861
+
862
+ ## Fixed
863
+
864
+ ### Android
865
+
866
+ - Fix incorrect bottom inset when hiding BottomTabs in default options [#d0c21e4](https://github.com/wix/react-native-navigation/commit/d0c21e4f6573189e634838a53c518f6bb8587080) by [guyca](https://github.com/guyca)
867
+
868
+ ### iOS
869
+
870
+ - Fix topBar transparent background on iOS 12 [#cd3d347](https://github.com/wix/react-native-navigation/commit/cd3d3472fcb8e5588507bc16c438d53c581d7d2b) by [yogevbd](https://github.com/yogevbd)
871
+
872
+ # 4.0.6
873
+
874
+ ## Fixed
875
+
876
+ - Fix native bottomTab.icon resource not working [#aa1870a](https://github.com/wix/react-native-navigation/commit/aa1870a743ff9e1611c643a5462ca84f81710fcd) by [guyca](https://github.com/guyca)
877
+
878
+ ### iOS
879
+
880
+ - Fix default font size regression [#8f9e719](https://github.com/wix/react-native-navigation/commit/8f9e719747ef9c0861122f5c5a75b0ec852574fc) by [yogevbd](https://github.com/yogevbd)
881
+ - Fix crash when reloading while an overlay is displayed [#2fa17aa](https://github.com/wix/react-native-navigation/commit/2fa17aaaca56a1faef751e1d946eb3cc16ee7284) by [yogevbd](https://github.com/yogevbd)
882
+
883
+ # 4.0.5
884
+
885
+ ## Fixed
886
+
887
+ - Fix conflict with React Native's getConstants [#5e6d6fc](https://github.com/wix/react-native-navigation/commit/5e6d6fce132fc37722867c3e43a0036f4fe085b8) by [guyca](https://github.com/guyca)
888
+ - Use lodash submodules instead of lodash to reduce bundle size [#e53a9fe](https://github.com/wix/react-native-navigation/commit/e53a9feb20e5851d29f0913fc6c2704dbe00af2e) by (pontusab)[https://github.com/pontusab]
889
+ - Replace lodash chain with flow to reduce bundle size [#bf354d7](https://github.com/wix/react-native-navigation/commit/bf354d7c77c889c7e2dc0be0fc29b6a54011ce9b) by [jinshin1013](https://github.com/jinshin1013)
890
+
891
+ ### iOS
892
+
893
+ - Send ModalDismissed event [#4cb0e98](https://github.com/wix/react-native-navigation/commit/4cb0e98a6756317f8f61f5ee2b3d7530cd180f61) by [yogevbd](https://github.com/yogevbd)
894
+ - Fix incorrect `constants.topBarHeight` value when pageSheet modal is displayed [#9ef61a9](https://github.com/wix/react-native-navigation/commit/9ef61a9a1357312208463ef149a7951931043d1e) by [yogevbd](https://github.com/yogevbd)
895
+ - Add BottomTabs.attachMode support [#60c4dfc](https://github.com/wix/react-native-navigation/commit/60c4dfcd72245de02836bd4858f311822cdf866d) by [yogevbd](https://github.com/yogevbd)
896
+
897
+ ### Android
898
+
899
+ - Merge child options with SideMenu parent [#afbaa9a](https://github.com/wix/react-native-navigation/commit/afbaa9a4f53e05e6b00e1b8044a4a8a484ac3ea0) by [guyca](https://github.com/guyca)
900
+ - Temporary fix to FAB position on screen [#4714983](https://github.com/wix/react-native-navigation/commit/47149835dcf707806bb211230e63a61d8cf9a1d5) by [guyca](https://github.com/guyca)
901
+
902
+ # 4.0.4
903
+
904
+ ## Fixed
905
+
906
+ ### iOS
907
+
908
+ - Fix large title issues [#65118b1](https://github.com/wix/react-native-navigation/commit/65118b1ed28dd5a4636dabd5952c515d18a0b802) by [yogevbd](https://github.com/yogevbd)
909
+
910
+ # 4.0.3
911
+
912
+ ## Added
913
+
914
+ ### iOS
915
+
916
+ - Introduce `modal.swipeToDismiss` option [#659a42c](https://github.com/wix/react-native-navigation/commit/
917
+
918
+ ## Fixed
919
+
920
+ ### iOS
921
+
922
+ - Fix setting TopBar component in default options [#4a1b8b4](https://github.com/wix/react-native-navigation/commit/4a1b8b4a64546050f515f8dd00539f14e18e5f70) by [yogevbd](https://github.com/yogevbd)
923
+ - Fix blinking react view button [#d502c69](https://github.com/wix/react-native-navigation/commit/d502c694438903ffb612fec16a0b72444b3bc3ed) by [yogevbd](https://github.com/yogevbd)
924
+ - Let the system control modal presentation style [#659a42c](https://github.com/wix/react-native-navigation/commit/659a42cde14a3fb7653ebc40c906ec042761cd7c) by [yogevbd](https://github.com/yogevbd)
925
+ - Fix black TopBar on iOS < 13 [#7cf2083](https://github.com/wix/react-native-navigation/commit/7cf208353f22a4f07760f166ba0afd5af24f2e91) by [yogevbd](https://github.com/yogevbd)
926
+
927
+ # 4.0.2
928
+
929
+ ## Fixed
930
+
931
+ ### iOS
932
+
933
+ - Fix glitchy pop animation [#0c6e2f0](https://github.com/wix/react-native-navigation/commit/0c6e2f00b1ee8122499df08f060d5f016868355e) by [yogevbd](https://github.com/yogevbd)
934
+
935
+ # 4.0.1
936
+
937
+ ## Fixed
938
+
939
+ ### iOS
940
+
941
+ - Fix double back button [#ed7c579](https://github.com/wix/react-native-navigation/commit/ed7c5795e1e7770c1eeb692b1fa300f3163d7503) by [yogevbd](https://github.com/yogevbd)
942
+ - Fix transparent TopBar on iOS 13 [#b560265](https://github.com/wix/react-native-navigation/commit/b56026553dfcc5bf9ffe91e848fd3b7723561656) by [yogevbd](https://github.com/yogevbd)
943
+ - Fix TopBar.noBorder on iOS 13 [#919fa12](https://github.com/wix/react-native-navigation/commit/919fa12780e1ace13d2b8ce7680795fd26b68f76), [#5b7ddec](https://github.com/wix/react-native-navigation/commit/5b7ddec1dad927e71dc31115111dec5d7e165449) by [yogevbd](https://github.com/yogevbd)
944
+ - Fix crash when calling Navigation.constants() when BottomTabs don't exist [#2cd4752](https://github.com/wix/react-native-navigation/commit/2cd4752fa0a43a7c704846b3e3c8833a4c9eff36) by [yogevbd](https://github.com/yogevbd)
945
+
946
+ ### Android
947
+
948
+ - Create react host after SoLoader.init [#ab2fa63](https://github.com/wix/react-native-navigation/commit/ab2fa632c23fcfbfbb1fbb04e91f7394289e95cb) by [guyca](https://github.com/guyca)
949
+
950
+ # 4.0.0
951
+
952
+ ## Added
953
+
954
+ ### iOS
955
+
956
+ - **Support Xcode 11 - Xcode 10 is no longer supported**
957
+ - Support centering bottomTab icons using bottomTabs.titleDisplayMode [#26d3d82](https://github.com/wix/react-native-navigation/commit/26d3d8219097fe1b22a9585526ab8a712af6a508) by [yogevbd](https://github.com/yogevbd)
958
+ - Prevent creation of button react view with the same componentId [#1807c5b](https://github.com/wix/react-native-navigation/commit/1807c5b48d7b72e4f171dc105db6eff6291614e5) by [yogevbd](https://github.com/yogevbd)
959
+
960
+ ## Fixed
961
+
962
+ - Change BottomTab.icon back to optional [#d8c34c3](https://github.com/wix/react-native-navigation/commit/d8c34c391097189819972ffd7f5454231ec9b2f3) by [guyca](https://github.com/guyca)
963
+
964
+ ### iOS
965
+
966
+ - Remeasure title component after orientation change [#619af3e](https://github.com/wix/react-native-navigation/commit/619af3efe081f7069acfbe1149c7b0775f40faeb) by [yogevbd](https://github.com/yogevbd)
967
+ - Fix memory leak when reloading the app [#9970853](https://github.com/wix/react-native-navigation/commit/9970853820bf303cb75fb4238050e46c9c65c49d) by [yogevbd](https://github.com/yogevbd)
968
+ - Support UINavigationBarBehavior [#6f13d69](https://github.com/wix/react-native-navigation/commit/6f13d6963c6af655506a820b8bbddea4849152d4), [#9f43bca](https://github.com/wix/react-native-navigation/commit/9f43bca3573e8833eb8219c6e7a829d8d92faac0) by [yogevbd](https://github.com/yogevbd)
969
+
970
+ ### Android
971
+
972
+ - Automatically apply DrawBehind when tabs are hidden [#002b7d8](https://github.com/wix/react-native-navigation/commit/002b7d8f331019f79421e7cd28bab9bf411d73e4) by [guyca](https://github.com/guyca)
973
+ - Fix button disabled color has no effect [#b66ff1d](https://github.com/wix/react-native-navigation/commit/b66ff1d4b63196113ee0ba0129d33da39c2e134a) by [guyca](https://github.com/guyca)
974
+ - Fix BottomTabs background color changing to white background sometimes [#57eb0db](https://github.com/wix/react-native-navigation/commit/57eb0db7da6d69c784a9b0cd5672a563901738a9) by [guyca](https://github.com/guyca)
975
+
976
+ # 3.7.0
977
+
978
+ ## Added
979
+
980
+ ### Android
981
+
982
+ - Add bottomTabs.preferLargeIcons option [#fd93167](https://github.com/wix/react-native-navigation/commit/fd93167dbe70975161c20832f43a499453f76804) by [guyca](https://github.com/guyca)
983
+
984
+ # 3.6.0
985
+
986
+ ### Added
987
+
988
+ - Start script for Windows [#764863f](https://github.com/wix/react-native-navigation/commit/764863f46be72f7b29499994e5349ea90084d450) by [Damar95](https://github.com/Damar95)
989
+
990
+ ## Fixed
991
+
992
+ ### Android
993
+
994
+ - Include commandName in commandCompleted event [#b904608](https://github.com/wix/react-native-navigation/commit/b9046081ace89a2d3d0795c15920b6b2692c7702) by [jpgarcia](https://github.com/jpgarcia)
995
+ - Fix crash when title component is destroyed right after being attached [#39ee170](https://github.com/wix/react-native-navigation/commit/39ee1701fd0e626961158d9c342b4c6b0bd3c05b) by [guyca](https://github.com/guyca)
996
+ - Fix NPE when component appears under certain conditions [#35851fc](https://github.com/wix/react-native-navigation/commit/35851fc9893917338022f5eb06c25bfb21625d81) by [heroic](https://github.com/heroic)
997
+ - Apply layout direction directly on TopBar buttons container [#14b5221](https://github.com/wix/react-native-navigation/commit/14b5221caa2529c0396134c5f7981f093a14b58b) by [guyca](https://github.com/guyca)
998
+
999
+ # 3.5.1
1000
+
1001
+ ## Fixed
1002
+
1003
+ ### iOS
1004
+
1005
+ - Fix title component disappearing after mergeOptions [#6d446a8](https://github.com/wix/react-native-navigation/commit/6d446a8882f92b82cd01b78992331d66c31b5abf) by [guyca](https://github.com/guyca)
1006
+
1007
+ # 3.5.0
1008
+
1009
+ ## Fixed
1010
+
1011
+ ### Android
1012
+
1013
+ - Allow navigationBarColor change within mergeOptions [#8720628](https://github.com/wix/react-native-navigation/commit/87206286bfb8fd235e5356da9542c62dfc44f356) by [danielang](https://github.com/danielang)
1014
+ - Fix crash when null was used as bottomTab.color [#c48ed74](https://github.com/wix/react-native-navigation/commit/c48ed747a163a2917820e62ab40d5047389f5fcb) by [guyca](https://github.com/guyca)
1015
+
1016
+ # 3.4.0
1017
+
1018
+ ## Added
1019
+
1020
+ - [stable] Introduce Navigation.updateProps command [#0eb0570](https://github.com/wix/react-native-navigation/commit/0eb0570840a26d4b848d7c763060a2b8faf1dc80) by [guyca](https://github.com/guyca)
1021
+
1022
+ ### Android
1023
+
1024
+ - add support for navigationBarColor [#8af95da](https://github.com/wix/react-native-navigation/commit/8af95da24a0622829d514c8ed61507438491bc27) by [mcuelenaere](https://github.com/mcuelenaere)
1025
+
1026
+ ## Fixed
1027
+
1028
+ - Added setStackRoot animation property to interface [#fcdbe79](https://github.com/wix/react-native-navigation/commit/fcdbe79dc3305cbf12396aa6283a1bf4a5f02889) by [nielsdB97](https://github.com/nielsdB97)
1029
+
1030
+ # 3.3.0
1031
+
1032
+ ## Added
1033
+
1034
+ - **[experimental]** Support updating component props with Navigation.mergeOptions [#291f161](https://github.com/wix/react-native-navigation/commit/291f16177d2f67a474d3a980a503a85d0acf2b2a) by [justtal](https://github.com/justtal)
1035
+
1036
+ ### Android
1037
+
1038
+ - Add support for getLaunchArgs [#16646e7](https://github.com/wix/react-native-navigation/commit/16646e7c88d78f1ddd7fb6ae434ef968ac051f06) by [swabbass](https://github.com/swabbass)
1039
+ - Support bottomTab.selectedIcon [#45e8389](https://github.com/wix/react-native-navigation/commit/45e8389b2b7d282878a80c49b146ddeb4ec2cd89) by [guyca](https://github.com/guyca)
1040
+
1041
+ ### iOS
1042
+
1043
+ - Added fontWeight option for iOS 13 [#6ab2345](https://github.com/wix/react-native-navigation/commit/6ab2345ad6e9ddd26ac1275537ec2791fa50c7c2) by [yogevbd](https://github.com/yogevbd)
1044
+
1045
+ ## Fixed
1046
+
1047
+ ### Android
1048
+
1049
+ - Merge options with ParentViewControllers [#0dd3315](https://github.com/wix/react-native-navigation/commit/0dd331590770c33d067bfeae596aae7d4ff992ea) by [guyca](https://github.com/guyca)
1050
+
1051
+ ### iOS
1052
+
1053
+ - Prefer new imageWithTintColor API when tinting an UIImage [#5d751f6](https://github.com/wix/react-native-navigation/commit/5d751f643ad80a67abccc51d75f1127e2b65824a) by [danilobuerger](https://github.com/danilobuerger)
1054
+ - Fixed disappearing StatusBar when displaying native ViewControllers [#58c76e1](https://github.com/wix/react-native-navigation/commit/58c76e1ec218741b461bca30e8126e952b87a180) by [yogevbd](https://github.com/yogevbd)
1055
+ - Fixed title layout issues on iOS 13 [#898e187](https://github.com/wix/react-native-navigation/commit/898e187d4cbea76b93709c95ad89e984e660b904), [#a3f176d](https://github.com/wix/react-native-navigation/commit/a3f176d56e94e5a5de0be079de9f63b180dc6f5a), [#094b9a7](https://github.com/wix/react-native-navigation/commit/094b9a7ef153d62ea9c195e342cafca4892c1428) by [yogevbd](https://github.com/yogevbd)
1056
+ - Fixed leaking pageSheet modals on iOS 13 [#2b4d897](https://github.com/wix/react-native-navigation/commit/2b4d897f19684e2c04c3050c3882f1558cb1efed) by [yogevbd](https://github.com/yogevbd)
1057
+
1058
+ # 3.2.0
1059
+
1060
+ ## Added
1061
+
1062
+ ### Android
1063
+
1064
+ - Add animation support for setStackRoot [#d0a17fa](https://github.com/wix/react-native-navigation/commit/d0a17fabf4f5360b0f54797867a7a49960a1937d) by [Jazqa](https://github.com/Jazqa)
1065
+
1066
+ ## Fixed
1067
+
1068
+ - Don't cache values for constants() call [#a99e138](https://github.com/wix/react-native-navigation/commit/a99e138839abc8ab84b67489ef9a83a6874778da) by [ItsNoHax](https://github.com/ItsNoHax)
1069
+
1070
+ ### iOS
1071
+
1072
+ - Fix applying merged backButton options [#aef5b2e](https://github.com/wix/react-native-navigation/commit/aef5b2e3bd60acb33847c0ab3b66b8fc51fef703) by [guyca](https://github.com/guyca)
1073
+ - Remove duplicate setDefaultOptions in UIViewController categories [#0d31e30](https://github.com/wix/react-native-navigation/commit/0d31e30800dc3e7314cfbf1dcf6b645614b781f4) by [danilobuerger](https://github.com/danilobuerger)
1074
+ - Don't consume SideMenu enabled option after applying it in mergeOptions [#9faf458](https://github.com/wix/react-native-navigation/commit/9faf458cb451829e86809d9162728eed17a7f56c) by [guyca](https://github.com/guyca)
1075
+ - supportedInterfaceOrientations didn't take default orientation value into account [#9faf458](https://github.com/wix/react-native-navigation/commit/9faf458cb451829e86809d9162728eed17a7f56c) by [guyca](https://github.com/guyca)
1076
+ - SideMenu always returned the centre ViewController as the current child and didn't take open SideMenu into account [#9faf458](https://github.com/wix/react-native-navigation/commit/9faf458cb451829e86809d9162728eed17a7f56c) by [guyca](https://github.com/guyca)
1077
+ - Stop recursive double setting of default options [#d5c92b1](https://github.com/wix/react-native-navigation/commit/d5c92b1609d5fc1a75c51065791e5aad2a80b654) by [danilobuerger](https://github.com/danilobuerger)
1078
+ - Immediately unmount buttons removed by mergeOptions, instead of unmounting them when screen is unmounted [#65dde34](https://github.com/wix/react-native-navigation/commit/65dde342fb087bd122bc19de308cbf283485aac7) by [yogevbd](https://github.com/yogevbd)
1079
+
1080
+ ## Android
1081
+
1082
+ - Catch rare RuntimeException in setRoot when waitForRender = true [#b048581](https://github.com/wix/react-native-navigation/commit/b04858190e1fc2a1fe22f67879a6c7ca3769c297) by [rawrmaan](https://github.com/rawrmaan)
1083
+ - Fix SideMenu enabled property issues [#92fcf70](https://github.com/wix/react-native-navigation/commit/92fcf70773a3614c48e3ac844e81cb16d1ff8d2a) by [Royce](https://github.com/Royce)
1084
+
1085
+ # 3.1.2
1086
+
1087
+ ## Fixed
1088
+
1089
+ - Add @babel/core to devDependencies [#fdec91d](https://github.com/wix/react-native-navigation/commit/fdec91dc39364aaa23a48dfc4d1d44e73a6f2e21) by [ItsNoHax](https://github.com/ItsNoHax)
1090
+
1091
+ ### iOS
1092
+
1093
+ - Fix replacing react title with text title not working [#b434b4f](https://github.com/wix/react-native-navigation/commit/b434b4f82a6f0642af9d11ad8dda6ec8e9c5603a) by [FRizzonelli](https://github.com/FRizzonelli)
1094
+ - Fix merging TopBar title, buttons and status bar options, broke in 3.1.1 [#5409a62](https://github.com/wix/react-native-navigation/commit/5409a625d9d272c5c0a7d9b10ed0df5ff51c6155) by [guyca](https://github.com/guyca)
1095
+
1096
+ # 3.1.1
1097
+
1098
+ ## Fixed
1099
+
1100
+ ### Android
1101
+
1102
+ - Fix defaultOptions not being applied if called after setRoot [#338b096](https://github.com/wix/react-native-navigation/commit/338b0961f9bee9fa20583efe0f165e3cefa14c92) by [guyca](https://github.com/guyca)
1103
+
1104
+ # 3.1.0
1105
+
1106
+ ## Added
1107
+
1108
+ - Support passing null color to StatusBar backgroundColor and bottom tab icon color [#3519837](https://github.com/wix/react-native-navigation/commit/3519837cc2a82cb14ec1849bfc358865e407f556) by [guyca](https://github.com/guyca)
1109
+
1110
+ ## Fixed
1111
+
1112
+ ### Android
1113
+
1114
+ - Removed the legacy support lib [#8663669](https://github.com/wix/react-native-navigation/commit/8663669ed92f34bedf7bdbdb8a9b1a64be5b8cdf) by [SudoPlz](https://github.com/SudoPlz)
1115
+ - Apply layout direction directly on views [#fffd2d2](https://github.com/wix/react-native-navigation/commit/fffd2d23f169d11ddb7c9348e2070c3385844e34) by [guyca](https://github.com/guyca)
1116
+
1117
+ # 3.0.0
1118
+
1119
+ ## Android
1120
+
1121
+ - Support RN 0.60
1122
+ - Migrate to AndroidX
1123
+ - Improve draw behind StatusBar<br>
1124
+ Added `statusBar.translucent` boolean property
1125
+ - BottomTabs are not pushed upwards when keyboard opens
1126
+ - Removed SyncUiImplementation
1127
+ [SyncUiImplementation](https://github.com/wix/react-native-navigation/blob/master/lib/android/app/src/reactNative57WixFork/java/com/reactnativenavigation/react/SyncUiImplementation.java) was used to overcome a bug in RN's UiImplementation. This workaround was added to RN's `UiImplementation` in RN 0.60 and can be removed from RNN.
1128
+
1129
+ If you're using `SyncUiImplementation` your app will fail to compile after upgrading to v3. Simply remove the following code from your `MainApplication.java`
1130
+
1131
+ ```diff
1132
+ - import com.facebook.react.uimanager.UIImplementationProvider;
1133
+ - import com.reactnativenavigation.react.SyncUiImplementation;
1134
+ ```
1135
+
1136
+ * @override
1137
+ * protected UIImplementationProvider getUIImplementationProvider() {
1138
+ * return new SyncUiImplementation.Provider();
1139
+ * }
1140
+
1141
+ ````
1142
+ * BottomTab badge and dot indicator are not animated by default.
1143
+ * The following option will show a badge with animation
1144
+ ```js
1145
+ bottomTab: {
1146
+ badge: 'new,
1147
+ animateBadge: true
1148
+ }
1149
+ ```
1150
+
1151
+ * The following option will show a dot indicator with animation
1152
+ ```js
1153
+ bottomTab: {
1154
+ dotIndicator: {
1155
+ visible: true,
1156
+ animate: true
1157
+ }
1158
+ }
1159
+ ```
1160
+ * Stack, BottomTabs and SideMenu are drawn behind StatusBar.<br>
1161
+ While parent controllers are drawn behind the StatusBar, their background isn't.
1162
+ This means that when transitioning from a destinations drawn under the StatusBar to a destination drawn behind it, the application's default background color will be visible behind the StatusBar.
1163
+ If you application's theme is dark, you might want to change the `windowBackground` property to mitigate this:
1164
+ Add the following to your application's `style.xml`
1165
+ ```xml
1166
+ <?xml version="1.0" encoding="utf-8"?>
1167
+ <resources>
1168
+ <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
1169
+ <item name="android:windowBackground">@color/backgroundColor</item>
1170
+ </style>
1171
+
1172
+ <!--This is your application's default background color.
1173
+ It will be visible when the app is first opened (while the splash layout is visible)
1174
+ and when transitioning between a destination a screen drawn under the StatusBar to
1175
+ a destination drawn behind it-->
1176
+ <item name="backgroundColor" type="color">#f00</item>
1177
+ </resources>
1178
+ ````
1179
+
1180
+ # 2.29.0
1181
+
1182
+ ## Added
1183
+
1184
+ - Introduce `Navigation.updateProps` command [#0eb0570](https://github.com/wix/react-native-navigation/commit/0eb0570840a26d4b848d7c763060a2b8faf1dc80) by [guyca](https://github.com/guyca)
1185
+
1186
+ ## Fixed
1187
+
1188
+ ### iOS
1189
+
1190
+ - Fix compilation error on Xcode 10.x [#99ddcd8](https://github.com/wix/react-native-navigation/commit/99ddcd864005ce768ca7c0b34d2ecfa8246dc568) and [#83f03cd](https://github.com/wix/react-native-navigation/commit/83f03cd8f945152cda93c664d69bf36047989571) by [yogevbd](https://github.com/yogevbd)
1191
+
1192
+ ### Android
1193
+
1194
+ - Don't merge null bottomTab.selectedIconColor and bottomTab.iconColor [#c48ed74](https://github.com/wix/react-native-navigation/commit/c48ed747a163a2917820e62ab40d5047389f5fcb) by [guyca](https://github.com/guyca)
1195
+
1196
+ # 2.28.0
1197
+
1198
+ ## Added
1199
+
1200
+ - Support updating component props with Navigation.mergeOptions [#291f161](https://github.com/wix/react-native-navigation/commit/291f16177d2f67a474d3a980a503a85d0acf2b2a) by [justtal](https://github.com/justtal)
1201
+
1202
+ ### Android
1203
+
1204
+ - Support bottomTab.selectedIcon [#45e8389](https://github.com/wix/react-native-navigation/commit/45e8389b2b7d282878a80c49b146ddeb4ec2cd89) by [guyca](https://github.com/guyca)
1205
+
1206
+ # 2.27.7
1207
+
1208
+ ## Added
1209
+
1210
+ ### iOS
1211
+
1212
+ - Font weight option support on iOS [#f283e15](https://github.com/wix/react-native-navigation/commit/f283e155948c0ae190c1dde0fb3d78d5ac129af0) by [yogevbd](https://github.com/yogevbd)
1213
+
1214
+ # 2.27.6
1215
+
1216
+ ## Fixed
1217
+
1218
+ ### iOS
1219
+
1220
+ - Fix status bar disappear when presenting native camera screen on iOS [#6cfde5e](https://github.com/wix/react-native-navigation/commit/6cfde5e24c95506b6d31b2f40164fa3f196b72a6) by [yogevbd](https://github.com/yogevbd)
1221
+
1222
+ # 2.27.5
1223
+
1224
+ ## Fixed
1225
+
1226
+ ### iOS
1227
+
1228
+ - Stop recursive double setting of default options [#3da2ca8](https://github.com/wix/react-native-navigation/commit/3da2ca8afc7597b46cad500828dffc0102c034a6) by [danilobuerger](https://github.com/danilobuerger)
1229
+ - Fix infinite loop while trying to remove react buttons [#88fd1f1](https://github.com/wix/react-native-navigation/commit/88fd1f15d0bc22d8c53c7e518eb0bb178e15ea6c) by [guyca](https://github.com/guyca)
1230
+
1231
+ # 2.27.4
1232
+
1233
+ ## Fixed
1234
+
1235
+ ### iOS
1236
+
1237
+ - Immediately unmount buttons removed by mergeOptions, instead of unmounting them when screen is unmounted [#65dde34](https://github.com/wix/react-native-navigation/commit/65dde342fb087bd122bc19de308cbf283485aac7) by [yogevbd](https://github.com/yogevbd)
1238
+ - Don't consume SideMenu enabled option after applying it in mergeOptions [#9faf458](https://github.com/wix/react-native-navigation/commit/9faf458cb451829e86809d9162728eed17a7f56c) by [guyca](https://github.com/guyca)
1239
+ - supportedInterfaceOrientations didn't take default orientation value into account [#9faf458](https://github.com/wix/react-native-navigation/commit/9faf458cb451829e86809d9162728eed17a7f56c) by [guyca](https://github.com/guyca)
1240
+ - SideMenu always returned the centre ViewController as the current child and didn't take open SideMenu into account [#9faf458](https://github.com/wix/react-native-navigation/commit/9faf458cb451829e86809d9162728eed17a7f56c) by [guyca](https://github.com/guyca)
1241
+ - Remove duplicate setDefaultOptions in UIViewController categories [#452c4e6](https://github.com/wix/react-native-navigation/commit/452c4e692fe700600447f19282bd42b07dcc9bb4) by [danilobuerger](https://github.com/danilobuerger)
1242
+
1243
+ # 2.27.3
1244
+
1245
+ ## Fixed
1246
+
1247
+ ### iOS
1248
+
1249
+ - Fix merging back button [#1800e70](https://github.com/wix/react-native-navigation/commit/1800e708a8483bc4e56873e826f2d72f02d659b9) by [guyca](https://github.com/guyca)
1250
+
1251
+ # 2.27.2
1252
+
1253
+ ## Fixed
1254
+
1255
+ ### iOS
1256
+
1257
+ - Fix TopBar, title, buttons and StatusBar which broke in the previous release [#8044b2d](https://github.com/wix/react-native-navigation/commit/8044b2d12cfd2b937bfbe846d98f9034a88aa254) by [guyca](https://github.com/guyca)
1258
+
1259
+ # 2.27.1
1260
+
1261
+ ## Fixed
1262
+
1263
+ ### iOS
1264
+
1265
+ - Fix defaultOptions not being applied if called after setRoot [#338b096](https://github.com/wix/react-native-navigation/commit/338b0961f9bee9fa20583efe0f165e3cefa14c92) by [guyca](https://github.com/guyca)
1266
+
1267
+ # 2.27.0
1268
+
1269
+ ## Added
1270
+
1271
+ - Support passing null color to StatusBar backgroundColor and bottom tab icon color [#3519837](https://github.com/wix/react-native-navigation/commit/3519837cc2a82cb14ec1849bfc358865e407f556) by [guyca](https://github.com/guyca)
1272
+
1273
+ ## Fixed
1274
+
1275
+ ### Android
1276
+
1277
+ - Apply layout direction directly on views [#fffd2d2](https://github.com/wix/react-native-navigation/commit/fffd2d23f169d11ddb7c9348e2070c3385844e34) by [guyca](https://github.com/guyca)
1278
+
1279
+ # 2.26.1
1280
+
1281
+ ## Fixed
1282
+
1283
+ ### iOS
1284
+
1285
+ - Fix transparent topBar background color transition [#147cf4c](https://github.com/wix/react-native-navigation/commit/147cf4cafca83f0903b68a47d3812009a11d3018) by [yogevbd](https://github.com/yogevbd)
1286
+
1287
+ # 2.26.0
1288
+
1289
+ ## Fixed
1290
+
1291
+ ### Android
1292
+
1293
+ - Apply TopBar buttons only if they are different than current buttons [#f15e9b3](https://github.com/wix/react-native-navigation/commit/f15e9b3a2a8c661d10c93d9c2f9a7155de979240) by [guyca](https://github.com/guyca)
1294
+
1295
+ # 2.25.0
1296
+
1297
+ ## Fixed
1298
+
1299
+ ### Android
1300
+
1301
+ - Ensure appLaunched event is emitted only when app is resumed [#21584fd](https://github.com/wix/react-native-navigation/commit/21584fd4a525d7a8085caf18d624668cc5865d93) by [guyca](https://github.com/guyca)
1302
+
1303
+ # 2.24.0
1304
+
1305
+ ## Added
1306
+
1307
+ - Add return type to Navigation.constants() [#66ab3cd](https://github.com/wix/react-native-navigation/commit/66ab3cd695be68e7d7536fde4c61bad4e7067281) by [danilobuerger](https://github.com/danilobuerger)
1308
+
1309
+ ## Fixed
1310
+
1311
+ ### Android
1312
+
1313
+ - Destroy modals on setRoot [#f06787d](https://github.com/wix/react-native-navigation/commit/f06787dec9997cd51c52bef4d319ef32bca64f48) by [guyca](https://github.com/guyca)
1314
+
1315
+ ### iOS
1316
+
1317
+ - Fixed react component button flicker [#77ee4df](https://github.com/wix/react-native-navigation/commit/77ee4df6c9e3824c418fbba6ed9fe82711b5d520) by [yogevbd](https://github.com/yogevbd)
1318
+ - Fix bug that reverts navbar title size to 17 [#e677f97](https://github.com/wix/react-native-navigation/commit/e677f97cb775e43af1352caf38c03dd352851b47) by [dcvz](https://github.com/dcvz)
1319
+
1320
+ # 2.23.0
1321
+
1322
+ ## Added
1323
+
1324
+ - BottomTab dot indicator [#f425155](https://github.com/wix/react-native-navigation/commit/f42515524d88a5f4f12a35684ab288dad6af1b1d) by [guyca](https://github.com/guyca)
1325
+
1326
+ ## Fixed
1327
+
1328
+ ### Android
1329
+
1330
+ - Fix margin top topbar when statusbar drawBehind [#234c59c](https://github.com/wix/react-native-navigation/commit/234c59ce7b35acc6ba53bc7a43f4c688bfb6e11e) by [isuhar](https://github.com/isuhar)
1331
+
1332
+ ### iOS
1333
+
1334
+ - Fix SideMenu size after screen rotation [#a591fe4](https://github.com/wix/react-native-navigation/commit/a591fe4476ca152a336022e2570431b677f60225) by [lionerez1](https://github.com/lionerez1)
1335
+ - Set nil as default UITabBarItem.title value [#76d832b](https://github.com/wix/react-native-navigation/commit/76d832b683b3daca530340acdcfbc30acf36b568) by [danilobuerger](https://github.com/danilobuerger)
1336
+
1337
+ # 2.22.3
1338
+
1339
+ ## Fixed
1340
+
1341
+ ### iOS
1342
+
1343
+ - Fix Constants.topBarHeight being zero if root ViewController isn't a NavigationViewController [#f19e523](https://github.com/wix/react-native-navigation/commit/f19e523afcc013681a601d2c9d4b0340f5459b59) by [guyca](https://github.com/guyca)
1344
+
1345
+ # 2.22.2
1346
+
1347
+ ## Added
1348
+
1349
+ ### iOS
1350
+
1351
+ - Support changing javascript bundle location in runtime [#8959d68](https://github.com/wix/react-native-navigation/commit/8959d680d8efc8ca9f11d5ae7d78134c2f9a7959) by [yogevbd](https://github.com/yogevbd)
1352
+
1353
+ ## Fixed
1354
+
1355
+ ### iOS
1356
+
1357
+ - Fix back button initialization on setStackRoot [#c0ad194](https://github.com/wix/react-native-navigation/commit/c0ad1945a3dbbc29192abdcc1c598516b391a10f) by [yogevbd](https://github.com/yogevbd)
1358
+
1359
+ # 2.22.1
1360
+
1361
+ ## Fixed
1362
+
1363
+ - Add width and height attributes to SideMenuSide type [#73d621d](https://github.com/wix/react-native-navigation/commit/73d621d48d24ba270dec42f82789bfbc911262cd) by [ball-hayden](https://github.com/ball-hayden)
1364
+
1365
+ ### iOS
1366
+
1367
+ - Fixed crash when calling Navigation.constants() when root view isn't BottomTabs [#663b1c3](https://github.com/wix/react-native-navigation/commit/663b1c3f60cb474ebd9cdbda824121add1c34801) by [daveyjones](https://github.com/daveyjones)
1368
+ - Fixed crash when setting react component as left button [#29829ae](https://github.com/wix/react-native-navigation/commit/29829ae2aa972fa7df20cd50e0d43efa8991fbf2) by [MarianPalkus](https://github.com/MarianPalkus)
1369
+
1370
+ ### Android
1371
+
1372
+ - Remove android \* imports for support [#35a19b5](https://github.com/wix/react-native-navigation/commit/35a19b5f687b89dc414e65184995ebc69f847704) by [heroic](https://github.com/heroic)
1373
+ - Add back button to last child in setStackRoot [#898cf7a](https://github.com/wix/react-native-navigation/commit/898cf7ae2703656459f28e21123f3b0f8a40b22e) by [guyca](https://github.com/guyca)
1374
+
1375
+ # 2.21.1
1376
+
1377
+ ## Fixed
1378
+
1379
+ ### iOS
1380
+
1381
+ - Fix `setStackRoot` options resolving [#8ced964](https://github.com/wix/react-native-navigation/commit/8ced96443f8c279821719e842f7580a988aeb47c) by [yogevbd](https://github.com/yogevbd)
1382
+
1383
+ # 2.21.0
1384
+
1385
+ ## Added
1386
+
1387
+ - Title topMargin option [#069cb85](https://github.com/wix/react-native-navigation/commit/069cb85132dcc441c27c56e0f25e475c1d44eef2) by [guyca](https://github.com/guyca)
1388
+
1389
+ ## Fixed
1390
+
1391
+ - Safer check around component listener trigger [#51d1b66](https://github.com/wix/react-native-navigation/commit/51d1b6676027c38d439dff03d23660ac8d617a5a) by [dozoisch](https://github.com/dozoisch)
1392
+
1393
+ ### Android
1394
+
1395
+ - Emit SideMenu visibility events [#7ee9c12](https://github.com/wix/react-native-navigation/commit/7ee9c12d53dffe3461a3c4f6721619f9ceb5eb91) by [guyca](https://github.com/guyca)
1396
+ - Fix setStackRoot crash when called with the same id [#3c08b1c](https://github.com/wix/react-native-navigation/commit/3c08b1c99559a3485fb8661ca98ce256db59adb8) by [guyca](https://github.com/guyca)
1397
+ - Fix crashes related to race conditions around ViewController.destroy [#f2e46ea](https://github.com/wix/react-native-navigation/commit/f2e46ea4e7f6a32164ce0a0b1e1b697544177f33) by [guyca](https://github.com/guyca)
1398
+
1399
+ # 2.20.2
1400
+
1401
+ ## Fixed
1402
+
1403
+ ### iOS
1404
+
1405
+ - Fixed missing TopBar React component background [#d2d5d0f](https://github.com/wix/react-native-navigation/commit/d2d5d0fe7951e2c0c1e8d9fba247de392793a73b) by [yogevbd](https://github.com/yogevbd)
1406
+
1407
+ # 2.20.1
1408
+
1409
+ ## Fixed
1410
+
1411
+ - Include PassProps in ComponentDidAppearListener [#c226a7d](https://github.com/wix/react-native-navigation/commit/c226a7d55193c9c630e102dce35bc02243222921) by [yogevbd](https://github.com/yogevbd)
1412
+
1413
+ # 2.20.0
1414
+
1415
+ ## Fixed
1416
+
1417
+ - Include PassProps in layout parameter of CommandListener [#d3d01c2](https://github.com/wix/react-native-navigation/commit/d3d01c221f6c63ac36d8ef13a66e03fab980cf9f) by [yogevbd](https://github.com/yogevbd)
1418
+
1419
+ ### Android
1420
+
1421
+ - Fix TopBar background React component flicker when pushing screens [#99032e0](https://github.com/wix/react-native-navigation/commit/99032e060d2e0a429d3da2775884f624e8cd5fd5) by [FRizzonelli](https://github.com/FRizzonelli)
1422
+
1423
+ # 2.19.1
1424
+
1425
+ ## Fixed
1426
+
1427
+ ### Android
1428
+
1429
+ - Fix missing absolute positioned views [#ecadcb0](https://github.com/wix/react-native-navigation/commit/ecadcb0f352d5c96944966deb09a7c2d570ccb2d) by [guyca](https://github.com/guyca)
1430
+
1431
+ # 2.19.0
1432
+
1433
+ ## Added
1434
+
1435
+ - Add passProps to component typings file [#42fd86d](https://github.com/wix/react-native-navigation/commit/42fd86d654feac83177c272b19276e71c08ef75a) by [Andarius](https://github.com/Andarius)
1436
+ - Add missing topBar options [#5566ffd](https://github.com/wix/react-native-navigation/commit/5566ffd47c65f7bfc608f3a0f0b19814039b541e) by [retyui](https://github.com/retyui)
1437
+
1438
+ ## Fixed
1439
+
1440
+ ### iOS
1441
+
1442
+ - Fixes broken modals animations [#42e26d7](https://github.com/wix/react-native-navigation/commit/42e26d77b8d231debe0489dbe874fc06d9a97589) by [yogevbd](https://github.com/yogevbd)
1443
+
1444
+ ### Android
1445
+
1446
+ - Fixed buggy currentTabIndex when calling setRoot multiple times [#cd182f4](https://github.com/wix/react-native-navigation/commit/cd182f4693a6a4bd943eddf9a15706d943c88d4e) by [guyca](https://github.com/guyca)
1447
+
1448
+ # 2.18.5
1449
+
1450
+ ## Fixed
1451
+
1452
+ ### iOS
1453
+
1454
+ - Handle simultaneous recognizers, Fixes a crash when tapping on the screen with other gesture recognizers active [#a5b9f58](https://github.com/wix/react-native-navigation/commit/a5b9f58affd132bba03f961a255d05e41272bae9) by [jordoh](https://github.com/jordoh)
1455
+
1456
+ # 2.18.4
1457
+
1458
+ ## Fixed
1459
+
1460
+ ### iOS
1461
+
1462
+ - Fix topBar.title.component fill alignment [#9f439da](https://github.com/wix/react-native-navigation/commit/9f439dabd8fabc151bb96fbb04fa34bfe2b469d8) by [yogevbd](https://github.com/yogevbd)
1463
+
1464
+ # 2.18.3
1465
+
1466
+ ## Fixed
1467
+
1468
+ ### iOS
1469
+
1470
+ - Fix topBar.titleView calculation on props change [#f3b1d34](https://github.com/wix/react-native-navigation/commit/f3b1d34ea61341f08ab864b2134933ec9764b127) by [yogevbd](https://github.com/yogevbd)
1471
+
1472
+ # 2.18.2
1473
+
1474
+ ## Fixed
1475
+
1476
+ ### iOS
1477
+
1478
+ - Fix TopBar react view measurement issue [#1993b93](https://github.com/wix/react-native-navigation/commit/1993b93c2ec388bce8923b6d70edf11fc5499976) by [yogevbd](https://github.com/yogevbd)
1479
+
1480
+ # 2.18.1
1481
+
1482
+ ## Fixed
1483
+
1484
+ ### iOS
1485
+
1486
+ - Fix bottomTabs’s initial currentTabIndex [#0e888fb](https://github.com/wix/react-native-navigation/commit/0e888fb65a70343949386f0d6f9f59b03e7b93b7) by [yogevbd](https://github.com/yogevbd)
1487
+
1488
+ # 2.18.0
1489
+
1490
+ ## Fixed
1491
+
1492
+ - Add missing topMargin type to OptionsTopBar [#9d7d7f4](https://github.com/wix/react-native-navigation/commit/9d7d7f4600ce4994ed680c123f59eb198130a32c) by [ceyhuno](https://github.com/ceyhuno)
1493
+
1494
+ ### iOS
1495
+
1496
+ - Fix bottomTabs’s animate option [#9836730](https://github.com/wix/react-native-navigation/commit/9836730570f8a84c389ddf59728176fa6c828222) by [wsliaw](https://github.com/wsliaw)
1497
+ - Stop keeping hard reference to ViewControllers, remove RNNStore [#275304c](https://github.com/wix/react-native-navigation/commit/275304c88e8f35bc053aec2328a94a38a6fce088) by [yogevbd](https://github.com/yogevbd)
1498
+ - Return componentId on showModal [#81dc07d](https://github.com/wix/react-native-navigation/commit/81dc07d5b899ed2df1751562afc5a9703fbe0ab9) by [yogevbd](https://github.com/yogevbd)
1499
+ - Apply bottomTabs options after children added [#2bddff3](https://github.com/wix/react-native-navigation/commit/2bddff390d939f21d1387645077f57cb81399970) by [yogevbd](https://github.com/yogevbd)
1500
+ - Fix sideMenu orientation options [#0e1a35d](https://github.com/wix/react-native-navigation/commit/0e1a35d467fc22eab3742fd92cbf6062a645b535) by [yogevbd](https://github.com/yogevbd)
1501
+ - Fix broken TextInput focus in Overlay [#e9ca247](https://github.com/wix/react-native-navigation/commit/e9ca247a524e474daf3ccf56989289ce679fc063) by [yogevbd](https://github.com/yogevbd)
1502
+ - Fix TopBar react view measurement issue [#be00c4c](https://github.com/wix/react-native-navigation/commit/be00c4c36d9eee1da39f18a37240c1980cd22951) by [yogevbd](https://github.com/yogevbd)
1503
+
1504
+ ## 2.17.0
1505
+
1506
+ - Migrate to Detox 12 [#9428233](https://github.com/wix/react-native-navigation/commit/942823390a8d628b0e94a8d1c35301ece0bb0971) by [guyca](https://github.com/guyca)
1507
+
1508
+ ### Fixed
1509
+
1510
+ #### iOS
1511
+
1512
+ - Fix Height of SideMenu when device orientation changes [#68c62f3](https://github.com/wix/react-native-navigation/commit/68c62f33b586d1d9dfd7839ea66342861dacf534) by [mohammadalijf](https://github.com/mohammadalijf)
1513
+ - adding and removing components from registry manually by presenter [#ac60d2f](https://github.com/wix/react-native-navigation/commit/ac60d2fe6ad036528c31954a2997109b06f0c947) by [yogevbd](https://github.com/yogevbd)
1514
+ - Attach and detach viewControllers explicitly in store [#2830059](https://github.com/wix/react-native-navigation/commit/28300597ede5de1f08d7b32ba4a9313ffdf4aac1) by [yogevbd](https://github.com/yogevbd)
1515
+ - Fix StatusBarOptions duplication in xcodeproj [#ab9fd65](https://github.com/wix/react-native-navigation/commit/ab9fd658c2abde508a42374baad983ba2a3c143d) by [tyronet-sportsbet](https://github.com/tyronet-sportsbet)
1516
+
1517
+ #### Android
1518
+
1519
+ - Match android dependencies to app configuration [#e954a41](https://github.com/wix/react-native-navigation/commit/e954a41e64f203b17c70a54224bcac2190c689be) by [alpha0010](https://github.com/alpha0010)
1520
+ - Do not setTag to bottomTabs if testId is null [#9126ced](https://github.com/wix/react-native-navigation/commit/9126ced3bd1e0d82d966f6b45f529ac876ecc9d8) by [EliSadaka](https://github.com/EliSadaka)
1521
+ - Clear sideMenu's visible options after applying [#283f226](https://github.com/wix/react-native-navigation/commit/283f226f55be633da5022692c76d90a391ec3fd8) by [ItsNoHax](https://github.com/ItsNoHax)
1522
+
1523
+ ## 2.16.0
1524
+
1525
+ ### Fixed
1526
+
1527
+ - Update app lifecycle docs [#1c740b7](https://github.com/wix/react-native-navigation/commit/1c740b74f25157bcd0b58f88c7da7716deea763b) by [ericketts](https://github.com/ericketts)
1528
+
1529
+ #### iOS
1530
+
1531
+ - Fix command completion event commandId [#0e29a03](https://github.com/wix/react-native-navigation/commit/0e29a03a40df26755d71c3578ca5ca554096b14c) by [yogevbd](https://github.com/yogevbd)
1532
+ - Fix topBar buttons iconsInsets [#e2dcef9](https://github.com/wix/react-native-navigation/commit/e2dcef9d4a4a5efb6021e00a80f3898cc0254343) by [yogevbd](https://github.com/yogevbd)
1533
+
1534
+ ## 2.15.0
1535
+
1536
+ ### Added
1537
+
1538
+ - Add `externalComponent` prop to Layout TS declaration [#5ba7ccb](https://github.com/wix/react-native-navigation/commit/5ba7ccb75fd9e3e9ecf0b954d78704930f50d8f6) by [yedidyak](https://github.com/yedidyak)
1539
+
1540
+ ### Fixed
1541
+
1542
+ #### iOS
1543
+
1544
+ - Fix prevent retaining button component in componentRegistry [#0186b1a](https://github.com/wix/react-native-navigation/commit/0186b1ac36e919fb6b2a796677db1905b48aec7e) by [yogevbd](https://github.com/yogevbd)
1545
+ - Fix and refactor animations options [#a98f187](https://github.com/wix/react-native-navigation/commit/a98f18704cc49094cd91859e75089328b4fd7cbc) by [yogevbd](https://github.com/yogevbd)
1546
+ - Fix display empty custom topBar background over valid custom background [#6cb1e18](https://github.com/wix/react-native-navigation/commit/6cb1e18a883db803a5b193ca86f077d4e281a8e4)
1547
+ by [RoTTex](https://github.com/RoTTex)
1548
+
1549
+ ## 2.14.0
1550
+
1551
+ ### Fixed
1552
+
1553
+ - Add direction property to Layout TS declaration [#025c5e8](https://github.com/wix/react-native-navigation/commit/025c5e8dd6a0eec75f3a27a49e52af1d252b5351) by [mohammadalijf](https://github.com/mohammadalijf)
1554
+ - Add enabled property to StackAnimation TS declaration [#996f2b1](https://github.com/wix/react-native-navigation/commit/996f2b11ff4dc98d579a7c7a0ff7ab6fa8577916) by [larryranches](https://github.com/larryranches)
1555
+ - [BREAKING] Rename animation options class name [#4517d22](https://github.com/wix/react-native-navigation/commit/4517d22b38a1450b8e426f8de03c4b9fdc1213e8) by [guyca](https://github.com/guyca)
1556
+
1557
+ #### Android
1558
+
1559
+ - Fixed title centering issues [#1899601](https://github.com/wix/react-native-navigation/commit/1899601fb99093f804f8b97773a6470a7587017c) by [hadimostafapour](https://github.com/hadimostafapour)
1560
+ - Cancel in-flight push animation on pop [#47b7d2c](https://github.com/wix/react-native-navigation/commit/47b7d2c7c54af861e99b922aa258489d86c9c0b2) by [guyca](https://github.com/guyca)
1561
+ - Fix crash when calling setStackRoot multiple times in quick succession [#fdee254](https://github.com/wix/react-native-navigation/commit/fdee25422f6568be4ba5507b26f470b511decc95) by [guyca](https://github.com/guyca)
1562
+ - External component lifecycle events [#602c669](https://github.com/wix/react-native-navigation/commit/602c669b02b31c45b040965e27c327c2bd0fde61) by [guyca](https://github.com/guyca)
1563
+
1564
+ #### iOS
1565
+
1566
+ - Fix iOS pop gesture when topBar is hidden [#81d8b69](https://github.com/wix/react-native-navigation/commit/81d8b69d61934e4702d59d531ce84294c9b92c55) by [rawrmaan](https://github.com/rawrmaan)
1567
+
1568
+ ## 2.13.1
1569
+
1570
+ ### Fixed
1571
+
1572
+ - Moved `react-native-uilib` to dev dependencies [#2c514d9](https://github.com/wix/react-native-navigation/commit/2c514d931f74cf97807cb565672ddce50644349f) by [guyca](https://github.com/guyca)
1573
+
1574
+ ## 2.13.0
1575
+
1576
+ ### Added
1577
+
1578
+ - Add `enabled?` property to interface OptionsAnimationProperties [#6065bd1](https://github.com/wix/react-native-navigation/commit/6065bd1345ef5087d9dea92c9c332ba42619411f) by [taichi-jp](https://github.com/taichi-jp)
1579
+
1580
+ ### Fixed
1581
+
1582
+ #### iOS
1583
+
1584
+ - Fixes initial screen size [#e036743](https://github.com/wix/react-native-navigation/commit/e03674381315f92292add444055aeaba791076d3) by [yogevbd](https://github.com/yogevbd)
1585
+ - Fix top bar buttons size on iOS 10 [#8282d93](https://github.com/wix/react-native-navigation/commit/8282d934f70d512548d6d4ceae25e9798d591141) by [yogevbd](https://github.com/yogevbd)
1586
+ - Prevent keyboard from hiding when overlay is shown [#aba58b6](https://github.com/wix/react-native-navigation/commit/aba58b6c5aa4b39a0fb76fa2f8ebbd28dc80952e) by [tomhicks](https://github.com/tomhicks)
1587
+
1588
+ #### Android
1589
+
1590
+ - Fix loading local images [#c82bc57](https://github.com/wix/react-native-navigation/commit/c82bc57d58227f8ecb54e7cf351da46b38b4f8f9) by [guyca](https://github.com/guyca)
1591
+ - Update side menu options on open / close callback [#43f05ee](https://github.com/wix/react-native-navigation/commit/43f05ee01574c18d216acfb510be4b5e38165e4d) by [gosuperninja](https://github.com/gosuperninja)
1592
+ - Fix overflow visible for react button components in TopBar [#54ff1cd](https://github.com/wix/react-native-navigation/commit/54ff1cd049b7a418f7fd2658f569d06853bcea6c) by [guyca](https://github.com/guyca)
1593
+
1594
+ ## 2.12.0
1595
+
1596
+ ### Added
1597
+
1598
+ - Add waitForRender to root animation options [#298ec43](https://github.com/wix/react-native-navigation/commit/298ec43f27eb9a031c7168675c40ab5be47396ec) by [guyca](https://github.com/guyca)
1599
+
1600
+ #### Android
1601
+
1602
+ - RTL support [#d09d010](https://github.com/wix/react-native-navigation/commit/d09d0108d1530cf10e24c46efb6c9d9962807ead) by [hadimostafapour](https://github.com/hadimostafapour)
1603
+
1604
+ ### Fixed
1605
+
1606
+ - Stop using lodash in store.js [#8ba9796](https://github.com/wix/react-native-navigation/commit/8ba9796d2d94c5dd58266841c2563bbcd563f635) by [guyca](https://github.com/guyca)
1607
+
1608
+ #### iOS
1609
+
1610
+ - Use autolayout constraints to set size of custom bar button item [#362606b](https://github.com/wix/react-native-navigation/commit/362606b82ed4de37e05ebf8603739b16adf0e0d2) by [eliperkins](https://github.com/eliperkins)
1611
+ - Ignore pan gesture when no drawer is enabled [#664ef34](https://github.com/wix/react-native-navigation/commit/664ef343090051049213eb5d56285e0432b4e2d7) by [StasDoskalenko](https://github.com/StasDoskalenko)
1612
+ - Fix peek and pop preview on iOS [#e7c0d16](https://github.com/wix/react-native-navigation/commit/e7c0d166cb70fa27edf68eae8a00f23257eddf9a) by [yogevbd](https://github.com/yogevbd)
1613
+ - Fix launch image matching for iPhone XR/XS Max portrait [#dfd894a](https://github.com/wix/react-native-navigation/commit/dfd894ab2f4ab434548a4ef57f0eb176ee17627f) by [oblador](https://github.com/oblador)
1614
+
1615
+ ## 2.11.0
1616
+
1617
+ ### Fixed
1618
+
1619
+ #### iOS
1620
+
1621
+ - Support updating bottomTab options [#2362655](https://github.com/wix/react-native-navigation/commit/23626556cf9ae4c161993b39776098855117d928) by [rsispal](https://github.com/rsispal)
1622
+
1623
+ #### Android
1624
+
1625
+ - Fix android build for RN 0.58.x [#600a1d1](https://github.com/wix/react-native-navigation/commit/600a1d188b634b7834c1720620336dd5d02bfd80) by [alpha0010](https://github.com/alpha0010)
1626
+
1627
+ ## 2.10.0
1628
+
1629
+ ### Added
1630
+
1631
+ #### iOS
1632
+
1633
+ - Add Icon insets support for topBar buttons [#545e5fe](https://github.com/wix/react-native-navigation/commit/545e5fef5fa570aaa20d95bbb40ed9aed72fc480) by [yogevbd](https://github.com/yogevbd)
1634
+ - SetRoot wait for render [#5abea28](https://github.com/wix/react-native-navigation/commit/5abea28c53ed34dc822641f30abe2190c08f8185) by [yogevbd](https://github.com/yogevbd)
1635
+
1636
+ ### Fixed
1637
+
1638
+ #### iOS
1639
+
1640
+ - Improved RNNSplashScreen status bar styling [#b3b88d1](https://github.com/wix/react-native-navigation/commit/b3b88d15bbb730b96de1fa2c0378d0f3c59b53ab) by [danielgindi](https://github.com/danielgindi)
1641
+
1642
+ #### Android
1643
+
1644
+ - Null check when parsing strings [#eda4b9c](https://github.com/wix/react-native-navigation/commit/eda4b9ce0a6a9b732241f662012a1e7e5750e193) by [guyca](https://github.com/guyca)
1645
+ - Fixed modalDismissed event being emitted with wrong id [#aef7745](https://github.com/wix/react-native-navigation/commit/aef7745cd3a8d9cfce69f9553c8c01b9bdf1cc06) by [guyca](https://github.com/guyca)
1646
+
1647
+ ## 2.9.0
1648
+
1649
+ ### Fixed
1650
+
1651
+ #### iOS
1652
+
1653
+ - Improve SplitView and BottomTabs interactions [#954e734](https://github.com/wix/react-native-navigation/commit/954e7348d78d97477927beb0f1ad3f1e37fedf65) by [zzorba](https://github.com/zzorba)
1654
+ - SplitView options are handled by presenter [#00d5e31](https://github.com/wix/react-native-navigation/commit/00d5e313f8992cac5b7fb2301515d8e35e20c2f8) by [zzorba](https://github.com/zzorba)
1655
+ - Fixes Large title and noBorder issue which caused color to change to default [#9c48a78](https://github.com/wix/react-native-navigation/commit/9c48a78bc2c01e68e3d9d184f5df637f6b331c53) by [mohammadalijf](https://github.com/mohammadalijf)
1656
+ - Pull BottomTabs height from correct controller [#8cee745](https://github.com/wix/react-native-navigation/commit/8cee74533489e1877ffea95c1622bd4ab6fb33ff) by [paubins](https://github.com/paubins)
1657
+
1658
+ #### Android
1659
+
1660
+ - Fix custom back button missing id [#578f6a8](https://github.com/wix/react-native-navigation/commit/578f6a8eeac543b64dce5637d6e6e856c5fdda1b) by [guyca](https://github.com/guyca)
1661
+ - Fix Android title centering [#4aa5cd1](https://github.com/wix/react-native-navigation/commit/4aa5cd17bfb8a2acad884e2614eef137698b0f5a) by [StasDoskalenko](https://github.com/StasDoskalenko)
1662
+
1663
+ ## 2.8.0
1664
+
1665
+ ### Added
1666
+
1667
+ - passProps passed to setStackRoot and showOverlay can specify type with generics [#bc23fba](https://github.com/wix/react-native-navigation/commit/bc23fbad608dc9e38a7f09ff76868867310a4d62) by [henrikra](https://github.com/henrikra)
1668
+ - passProps passed to showModal can specify type with generics [#34f37aa](https://github.com/wix/react-native-navigation/commit/34f37aa7c5790e10b3f7db8c5a2af23c6848c6c8) by [ruscoder](https://github.com/ruscoder)
1669
+
1670
+ #### Android
1671
+
1672
+ - Bottom tabs attach mode [#740ad3c](https://github.com/wix/react-native-navigation/commit/740ad3c326f29f51205b8f0fb046ff0658076925) by [guyca](https://github.com/guyca)
1673
+
1674
+ ### Fixed
1675
+
1676
+ #### iOS
1677
+
1678
+ - Fix system & back button color [#57d8ff7](https://github.com/wix/react-native-navigation/commit/57d8ff7858f550ade133422e4a02505ed6378968) by [maryjenel](https://github.com/maryjenel)
1679
+
1680
+ ## 2.7.1
1681
+
1682
+ ### Fixed
1683
+
1684
+ #### Android
1685
+
1686
+ - Fix broken static options provided as objects [#4d82292](https://github.com/wix/react-native-navigation/commit/4d82292950471979cfb6c4016e82665fa29fe9da) by [guyca](https://github.com/guyca)
1687
+
1688
+ ## 2.7.0
1689
+
1690
+ ### Added
1691
+
1692
+ - Adding hideNavBarOnFocusSearchBar option [#83f69d4](https://github.com/wix/react-native-navigation/commit/83f69d4effecfbaaf17af3cebdf8a03b38bfa589) by [sganti564](https://github.com/sganti564)
1693
+
1694
+ ### Fixed
1695
+
1696
+ - Add missing type interface "waitForRender" [#f1ef49e](https://github.com/wix/react-native-navigation/commit/f1ef49e7aeb63ec17b4165cac9d7e9d0cfe6d48e) by [minhtc](https://github.com/minhtc)
1697
+
1698
+ ### Android
1699
+
1700
+ - Fix title height not being set on Android [#09c8c37](https://github.com/wix/react-native-navigation/commit/09c8c37e644fa0af2f00a7ec0536d814cddc36fd) by [davrosull](https://github.com/davrosull)
1701
+ - Support calling mergeOptions on ExternalComponents [#b1e1ec8](https://github.com/wix/react-native-navigation/commit/b1e1ec84ae5f41693e69da17f7427b59e336fc6a) by [guyca](https://github.com/guyca)
1702
+
1703
+ ## 2.6.0
1704
+
1705
+ ### Added
1706
+
1707
+ #### iOS
1708
+
1709
+ - Support iOS system item icons for top bar [#7a26ea9](https://github.com/wix/react-native-navigation/commit/7a26ea956cfce65035ec902ef3f403f178b69317) by [BerndSchrooten](https://github.com/BerndSchrooten)
1710
+
1711
+ ### Fixed
1712
+
1713
+ - Road to noImplicitAny part 6 (FINAL part) [#08f8581](https://github.com/wix/react-native-navigation/commit/08f8581b3fbf95967a9cc95de2809316065ee275) by [henrikra](https://github.com/henrikra)
1714
+
1715
+ #### Android
1716
+
1717
+ - Fix ScrollView not scrollable in Overlay [#d3ab1ac](https://github.com/wix/react-native-navigation/commit/d3ab1ac526f5829fe74989144130a13d83795ad8) by [guyca](https://github.com/guyca)
1718
+
1719
+ #### iOS
1720
+
1721
+ - Fixed settings backButton color dynamically [#8434938](https://github.com/wix/react-native-navigation/commit/84349384958ee9f0d03d24c6ef087cc5b7661d4b) by [masarusanjp](https://github.com/masarusanjp)
1722
+
1723
+ ## 2.5.2
1724
+
1725
+ ### Fixed
1726
+
1727
+ #### Android
1728
+
1729
+ - Revert "Set elevation 0 when creating TopBar" [#135c6eb](https://github.com/wix/react-native-navigation/commit/135c6eb7b240d81e3781e564f021883191736504) by [guyca](https://github.com/guyca)
1730
+ - Only set elevation values from Options [#487c1da](https://github.com/wix/react-native-navigation/commit/487c1da9dc5277d1ad0e7ca0e410b1c4b5dbc61e) by [guyca](https://github.com/guyca)
1731
+
1732
+ ## 2.5.1
1733
+
1734
+ ### Fixed
1735
+
1736
+ #### Android
1737
+
1738
+ - Set elevation 0 when creating TopBar [#05dacbd](https://github.com/wix/react-native-navigation/commit/05dacbd0729f4ebf0074bd21c50f3bf813ad7fab) by [guyca](https://github.com/guyca)
1739
+
1740
+ ## 2.5.0
1741
+
1742
+ ### Fixed
1743
+
1744
+ - Road to implicit any part 5 [#ee6dc78](https://github.com/wix/react-native-navigation/commit/ee6dc788023ca78a51834206f9823ca85abd273e) by [henrikra](https://github.com/henrikra)
1745
+ - Road to implicitAny part 4 [#02985c5](https://github.com/wix/react-native-navigation/commit/02985c507a61c5534f63f134c3f5fecbf6218908) by [henrikra](https://github.com/henrikra)
1746
+ - Fixed the type mismatch for modalPresentationStyle [#9ef60e9](https://github.com/wix/react-native-navigation/commit/9ef60e9bd9f940c47b7efd05ca104b5404a66d3b) by [masarusanjp](https://github.com/masarusanjp)
1747
+
1748
+ #### Android
1749
+
1750
+ - Render first tab first [#e5a2efb](https://github.com/wix/react-native-navigation/commit/e5a2efb0d9237cae82fbadb92c3a86d0f01c3b5f) by [guyca](https://github.com/guyca)
1751
+ - Retrieve BuildConfig.DEBUG from Application in ImageLoader [#b422dd0](https://github.com/wix/react-native-navigation/commit/b422dd0761183edc5f6e5006ba5d5e9b06b9561b) by [guyca](https://github.com/guyca)
1752
+
1753
+ #### iOS
1754
+
1755
+ - Fix sideMenu intuitive side width [#07cc9d3](https://github.com/wix/react-native-navigation/commit/07cc9d3f6212c9bad59767e0a12ae9243de126f7) by [yogevbd](https://github.com/yogevbd)
1756
+
1757
+ ## 2.4.0
1758
+
1759
+ ### Added
1760
+
1761
+ #### Android
1762
+
1763
+ - Add fab.iconColor option to tint fab icon [#13de5ca](https://github.com/wix/react-native-navigation/commit/13de5cab70834ca5d38f02c512346753dec6c5ed) by [guyca](https://github.com/guyca)
1764
+
1765
+ ### Fixed
1766
+
1767
+ - Refactor options processor [#ee04610](https://github.com/wix/react-native-navigation/commit/ee04610f6a9c9117f9ae8c17ae6d9ce9ca132883) by [henrikra](https://github.com/henrikra)
1768
+
1769
+ #### Android
1770
+
1771
+ - Fix closing sideMenu when pushing a screen [#dc739de](https://github.com/wix/react-native-navigation/commit/dc739dee337b91c825992e3a77cdcf0262fee162) by [guyca](https://github.com/guyca)
1772
+ - Orientation.hasValue returns false for default orientation [#43ae659](https://github.com/wix/react-native-navigation/commit/43ae659097f8b6d2cf8897703034829172573fb7) by [guyca](https://github.com/guyca)
1773
+ - Measure TopBar buttons using using MeasureSpec.UNSPECIFIED [#dd93c51](https://github.com/wix/react-native-navigation/commit/dd93c5147aaac16c852e4795f39abc455f77c90b) by [guyca](https://github.com/guyca)
1774
+
1775
+ ## v2.3.0
1776
+
1777
+ ### Added
1778
+
1779
+ #### Android
1780
+
1781
+ - Add `layout.componentBackgroundColor` option - This option is used to set background color only for component layouts. [#cb48065](https://github.com/wix/react-native-navigation/commit/cb48065aaffa0449f1cd57b27bd3de6bb5a0eac8) by [guyca](https://github.com/guyca)
1782
+
1783
+ ### Fixed
1784
+
1785
+ - SetStackRoot now accepts an array of children which will replace the current children. [#2365e02](https://github.com/wix/react-native-navigation/commit/2365e0211b51a2353949c22a836340eb32cd8cc0) by [guyca](https://github.com/guyca)
1786
+
1787
+ #### Android
1788
+
1789
+ - Avoid unnecessary BottomTabs view creation. [#b84a3e5](https://github.com/wix/react-native-navigation/commit/b84a3e5fadcbef93a8ef683550743dc84ac8a2fa) by [guyca](https://github.com/guyca)
1790
+
1791
+ ## v2.2.5
1792
+
1793
+ ### Added
1794
+
1795
+ - Add typed interface to constants [#a71e731](https://github.com/wix/react-native-navigation/commit/a71e7311e270d2feb793c7c61b8e637afe98591e) by [pie6k](https://github.com/pie6k)
1796
+ - Remove some implicit anys and refactor tests [#c27fa5c](https://github.com/wix/react-native-navigation/commit/c27fa5c97a163b6578058fb3edad8753934b0ada) by [henrikra](https://github.com/henrikra)
1797
+ - Improve support for Context API and other Provider based apis [#9d36521](https://github.com/wix/react-native-navigation/commit/9d365216d968cb441d02ede36cc21608e091dfed) by [guyca](https://github.com/guyca)
1798
+
1799
+ ### Fixed
1800
+
1801
+ #### iOS
1802
+
1803
+ - Fix setting bottomTabs.currentTabIndex on bottomTabs init [#631e7db](https://github.com/wix/react-native-navigation/commit/631e7dbd555ab171679b021207091ae5d9f2f882) by [yogevbd](https://github.com/yogevbd)
1804
+
1805
+ ## v2.2.2 - v2.2.4
1806
+
1807
+ Skipped versions due to CI maintenance
1808
+
1809
+ ## v2.2.1
1810
+
1811
+ ### Fixed
1812
+
1813
+ #### iOS
1814
+
1815
+ - Fix title.font when subtitle supplied - Font wasn't applied on title, when subtitel was provided. [#14a5b74](https://github.com/wix/react-native-navigation/commit/14a5b748fa461a9c4bd50ca0148a0e13a8ae6fba) by [yogevbd](https://github.com/yogevbd)
1816
+ - Fix invisible modals edge case. When an Overlay was displayed before setRoot was called, Consecutive Modals and Overlays were attached to the wrong window. [#b40f8ed](https://github.com/wix/react-native-navigation/commit/b40f8eda6eea09c465b9cf0e29269fef6238dae0) by [yogevbd](https://github.com/yogevbd)
1817
+
1818
+ ## v2.2.0
1819
+
1820
+ ### Added
1821
+
1822
+ - Component name can be a number as well to support enum component names [#e32d8d2](https://github.com/wix/react-native-navigation/commit/e32d8d2c1a30e4a50b6b1f6ed8eeb99b81b58cde) by [henrikra](https://github.com/henrikra)
1823
+ - Update lodash to v4.17.x [#77e2faa](https://github.com/wix/react-native-navigation/commit/77e2faa5988c1e7905bc138030422291413213e0) by [guyca](https://github.com/guyca)
1824
+
1825
+ #### iOS
1826
+
1827
+ - Add sideMenu.openGestureMode option [#0a4bf2a](https://github.com/wix/react-native-navigation/commit/0a4bf2ade3b8b98041c8a6057d26a254e193d84d) by [yogevbd](https://github.com/yogevbd)
1828
+
1829
+ ### Fixed
1830
+
1831
+ - Add props to TopBarButton type [#4373](https://github.com/wix/react-native-navigation/pull/4373) by [gsdatta](https://github.com/gsdatta)
1832
+ - Add title alignment to OptionsTopBarTitle [#bd00422](https://github.com/wix/react-native-navigation/commit/bd004225b64c6e4a0bca45103ca0c1ebdbd80ad3) by [minhloi](https://github.com/minhloi)
1833
+
1834
+ #### iOS
1835
+
1836
+ - popGesture on stack root freezes the app [#4388](https://github.com/wix/react-native-navigation/issues/4388) by [yogevbd](https://github.com/yogevbd)
1837
+ - setRoot on main application window - fix setRoot on iPad [a3922f8](https://github.com/wix/react-native-navigation/commit/a3922f84815a80b094416b4ce2bee342f21890a6) by [yogevbd](https://github.com/yogevbd)
1838
+ - Fix "Multiple commands produce..." build error on Xcode 10 [#b5d300f](https://github.com/wix/react-native-navigation/commit/b5d300f0506e3e8098de5be0390b58eea32eb085) by [yogevbd](https://github.com/yogevbd)
1839
+
1840
+ #### Android
1841
+
1842
+ - Use proper key for bottom tab height [#3b98553](https://github.com/wix/react-native-navigation/commit/3b9855327363149613f371e6eb47727fc8430aab) by [Krizzu](https://github.com/Krizzu)
1843
+
1844
+ ## 2.1.3
1845
+
1846
+ ### Added
1847
+
1848
+ #### iOS
1849
+
1850
+ - Add optional componentId param to bindComponent [#0a6e34f](https://github.com/wix/react-native-navigation/commit/0a6e34f2dd16bbec43edd37c93c0f609b6c589f2) by [luigiinred](https://github.com/luigiinred)
1851
+
1852
+ ### Fixed
1853
+
1854
+ - Avoid calling component generators on registerComponent [#708d594](https://github.com/wix/react-native-navigation/commit/708d594877f223e684df749faff2a3e8abdbe9a8) by [yogevbd](https://github.com/yogevbd)