File tree Expand file tree Collapse file tree 1 file changed +3
-16
lines changed
lib/components/Keyboard/KeyboardInput Expand file tree Collapse file tree 1 file changed +3
-16
lines changed Original file line number Diff line number Diff line change @@ -245,35 +245,22 @@ class KeyboardAccessoryView extends Component<KeyboardAccessoryViewProps> {
245
245
246
246
render ( ) {
247
247
const {
248
- revealKeyboardInteractive,
249
- manageScrollView,
250
- requiresSameParentToManageScrollView,
251
- addBottomView,
252
- bottomViewColor,
253
- allowHitsOutsideBounds,
254
248
renderContent,
255
249
kbInputRef,
256
250
kbComponent,
257
251
onItemSelected,
258
252
onRequestShowKeyboard,
259
253
useSafeArea,
260
- usesBottomTabs
254
+ ... others
261
255
} = this . props ;
262
256
263
257
return (
264
258
< KeyboardTrackingView
259
+ { ...others }
260
+ scrollBehavior = { this . getIOSTrackingScrollBehavior ( ) }
265
261
ref = { ( r : any ) => ( this . trackingViewRef = r ) }
266
262
style = { styles . trackingToolbarContainer }
267
- // @ts -ignore
268
263
onLayout = { this . onContainerComponentHeightChanged }
269
- scrollBehavior = { this . getIOSTrackingScrollBehavior ( ) }
270
- revealKeyboardInteractive = { revealKeyboardInteractive }
271
- manageScrollView = { manageScrollView }
272
- requiresSameParentToManageScrollView = { requiresSameParentToManageScrollView }
273
- addBottomView = { addBottomView }
274
- bottomViewColor = { bottomViewColor }
275
- allowHitsOutsideBounds = { allowHitsOutsideBounds }
276
- usesBottomTabs = { usesBottomTabs }
277
264
>
278
265
< > { renderContent ?.( ) } </ >
279
266
< CustomKeyboardView
You can’t perform that action at this time.
0 commit comments