Michele Cassano

Results 1 comments of Michele Cassano

My current workaround uses `useState` and `useEffect` to update the value when it changes: ```js function MyComponent() { const insets = useSafeArea() const [bottomPadding, setBottomPadding] = useState(insets.bottom) useEffect(() => {...