Ahsan Sher

Results 5 comments of Ahsan Sher

@rohitlien: A new API has been introduced from API level 21, If you are targeting apps above API level 21, it will be preferred approach. [UsageStatsManager](https://developer.android.com/reference/android/app/usage/UsageStatsManager.html)

@brennanleez-coder you can register event listener in the `onReady` callback like this: ``` const onReady = (editor: Editor) => { if (value) { editor.loadDesign(value.design); } editorRef.current = editor; editor.addEventListener("design:updated", exportHtml);

It will be a huge timesaver but still no discussion on it.

set zoom in the options should fix this issue. e.g ``` { const j = e.latLng?.toJSON(); if (j?.lat && j?.lng) { setLoc({ lat: j.lat, lng: j.lng }); } }} >...

@uttamv I don't exactly know your stack, but I was facing this issue with nextjs. it was resolved by updating `next.config.js` file like this. I added transpilePackages and this issue...