We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d18517 commit 0424896Copy full SHA for 0424896
Libraries/Components/FocusableWindows/FocusableWindows.windows.js
@@ -215,7 +215,9 @@ function createFocusableComponent(Component: any) {
215
216
_splitProps(props: Object) {
217
this._focusableProps = {};
218
- this._componentProps = {};
+ // Prevent the child (that is View in most of the cases) from being collapsed.
219
+ // Passed parameters can override this
220
+ this._componentProps = { collapsable: false };
221
222
for (const key in props) {
223
if (key in FocusableWindowsTemplate.focusablePropTypes) {
0 commit comments