Mark McFarlane

Results 33 comments of Mark McFarlane

This would be amazing to have! @antonKalinin any chance of this getting merged?

I've just experienced the same. Is there no workaround for this?

So looks like the version of `three-stdlib` is now at [`^2.8.6`](https://github.com/pmndrs/react-postprocessing/blob/ed7642b83fd6f6317afb0a08e811f3258133bd69/package.json#L43), so this shouldn't be a problem any more? However, I'm seeing this issue even with that version.

+1 for react-native-web!

@hoaphantn7604 Thanks!!! By the way, in case it's useful, I needed to assign `testID`s to the Flatlist and each item too. I put together a very hacky patch for that:...

@waldenermonteiro try this: ```jsx ``` Then (I'm using Cypress): ``` Cypress.Commands.add('selectPickerValue', (pickerTestID, value) => { cy.getTestID(pickerTestID).click(); // These are needed to get the FlatList to load all the items so...

`collapsable={false}` worked for me too! Pity this is needed though. I agree with this: > If there's a ref the view should essentially have collapsable={false} automatically.

> And instead of `measure()` better use `onLayout={}` `View` attribute (it works without `collapsable={false}`). > > ``` > const onLayout = ({nativeEvent: {layout: { x, y, width:w, height:h }}}: LayoutChangeEvent)...

Any news on this? I agree that overriding console.error feels dangerous, and led us to spend a fair amount of time wondering why our PropTypes weren't being checked, which turned...

I've also just seen this issue. For me, setting `keyboardBehavior={Platform.OS === 'ios' ? 'interactive' : 'fillParent'}` didn't seem to help... will keep looking into it.