Eric Rozell

Results 105 comments of Eric Rozell

Also pushed some of the platform agnostic changes to VirtualizedList in RN Core: https://github.com/facebook/react-native/pull/32038

Note, switching from `inverted=false` to `inverted=true` is not really a supported scenario, so in order to test, you'll have to modify the FlatList-basic.js example from RNTester to default to `inverted`...

Personally, I think using Keyboard focus should perhaps be a quirk setting if it's absolutely needed. But probably shouldn't be needed...

@chrisglein so for our app the correct behavior is Programmatic. An even better solution would be to change the focus API in React Native to optionally pass an enum for...

@acoates-ms shameless plug, I also think we need a quirk setting to default to polite or aggressive focus behavior :) #8393 IMO, polite focus behavior is a better default than...

Converting to draft, as we may also need to set Yoga props on children in our app, and we may only be able to do this reliably with a core...

Bringing back from draft. Setting a custom measure function is the best way to prevent Yoga from recursing into children. I also updated the name of the interface to further...

@asklar @acoates-ms added a quirk setting. I'll also file a bug on WinUI.

@acoates-ms - indeed, this does create a "bug" in that the focus state is not correct on the inactive window. I still think this is better than forcing a window...

+1 @NickGerleman. I'm all for ridding the implementation of DispatcherTimer, but all other platforms fire RAF callbacks on frame boundaries, so I'd be concerned that this would break JS -driven...