bytewiz

Results 7 comments of bytewiz

I am using Expo and I get the same error if this is supposed to be supported by Expo at all: ![image](https://user-images.githubusercontent.com/16811871/63572999-81782380-c584-11e9-93bb-083b72edf38e.png)

> There is a bug when you drag an item from a container one level up. For example, if you drag **text: item 8** under **container: item 2.** the original...

@tjmoses thanks 👍

You could make a window resize hook: ```javascript React.useEffect(() => { function handleResize() { setDimensions({ height: window.innerHeight, width: window.innerWidth, }); } // const debouncedHandleResize = debounce(handleResize, 10); window.addEventListener('resize', handleResize); return...

> This is the emulator code that's returning this particular error message: https://github.com/firebase/firebase-tools/blob/b7eea76c22816a0caf4e45e6bd0f072c066c5d44/src/emulator/storage/apis/firebase.ts#L111 > > Unfortunately, our admin credential vetting in the emulator is in a pretty poor state. We...

So does it actually work in production?? @maneesht @tonyjhuang