Sébastien Lorber

Results 210 issues of Sébastien Lorber

```jsx function ReactComponent() { const { navigate } = useNavigation(); useEffect(() => { if (someBoolean) { navigate(...) } }, [someBoolean,navigate]) } ``` The functions like navigate/goBack etc should be able...

Issue to discuss what should be included in v2, including breaking changes. Keep in mind this project is temporary and v5 will ship with hooks directly in core. The goal...

Hi, Was wondering if it was possible to group packages and see the sum of all the downloads? Usecase: we have a framework in v1 and v2. using different package...

Hi, To have lower impact on performances, wouldn't it be nice to call requestIdleCallback (if available) so that the tracking requests are actually scheduled with lower browser priority? Currently Mixpanel...

We can now in some browsers register passive scroll event listeners, that won't fire if the UI is busy doing something else This can be a significant performance gain for...

Hi, I think passing the throttled scroll event to the handler would be great because the event is currently inacessible. ## My usecase: I'm building a mobile application with a...

This works ``` this.steady = new Steady({ conditions: { "max-bottom" : 1000}, scrollElement: this.getDOMNode(), throttle: 500, handler: function(values,done) { console.debug("scroll",values); done(); }.bind(this) }); ``` This does not: ``` this.steady =...

Hi As the editor of ThisWeekInReact.com newsletter (featuring your lib this week), the first question that came to me is: what about web support? Is this lib usable in a...

Hi @EvanBacon I wonder how you solve this: ![image](https://user-images.githubusercontent.com/749374/73123288-b141b200-3f8e-11ea-860e-3b4e23b0688d.png) fontSize must be a number according to RN typedefs, yet useREM might return a string on web and is string |...