Results 4 comments of Diego Oliveira

Hi! We finally figured out the main problem with docz and our react native app. And it's very simple. We are using xstyled, and this lib export `styled` from styled-components...

Hey Guys! I think it's not the best approach but i managed to solve it with this mock: ```javascript jest.mock('react-native-pager-view', () => { const RealComponent = jest.requireActual('react-native-pager-view') const React =...

Hey @andyesp, my workaround was create a timeout before lockToLandscape, Something like this `setTimeout(function(){ Orientation.lockToLandscape(); }, 100)`