Lorenzo Imperatrice
Lorenzo Imperatrice
@Bladymendoza97 Did you run pod install and after that recompiled the app?
Hi @enricop89 ! `sessionEventHandlers` is updated everytime `onStreamCreated` or `updateStreamsProps` have new references. So `eventHandlers` has a new reference every time `sessionEventHandlers` update (when useMemo is triggered). As I write...
Well, `useMemo` doesn't create a function but returns a value and always returns the same object reference if dependencies (second parameters list) don't update. So is the same thing that...
@pesseyjulien Did you find any fix for that?
Same problem here, I would like to have the possibility to change default colors on Android. At the moment the situation is the following, and it's not good looking.
> on iOS the context menu follows the system theme automatically. Is there a way to do the same on Android? I'm going to check when I have some spare...
Hi @stesvis, thanks for reaching me out, at the moment is only possible by creating a custom spacing, here is well explained! Anyway thanks for the suggestion, I will definitely...
Inspired by the @isBatak solution, mine is using react hooks: ```jsx import { useState, useEffect } from 'react'; import SlickSlider from 'react-slick'; const Slider = ({ children, responsive, ...rest}) =>...
Same error here, I tried what @lumamontes said but I still get the error. One thing to notice is that when I'm bumping up the node version from 16 to...