Lautaro Navarro
Lautaro Navarro
Any updates here? I tried with the polyfilled loaders without luck
@CodyJasonBennett first of all thanks for answering! We are missing the blob parameter in [this function on your commit](https://github.com/CodyJasonBennett/react-native/commit/facd9bb81ec3fb7ae9dc6b8e235455c864039193#diff-f7c8189352ab85ccb170d2f6f63a44aa46e1b2c88d6ed0cc6b07f8899f230d7aR77) It's working but now I got another error, there is a...
It looks like readAsArrayBuffer needs to return an [ArrayBuffer](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer) instead of an [Uint8Array](https://developer.mozilla.org/es/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array). We can do that changing [this line](https://github.com/CodyJasonBennett/react-native/commit/facd9bb81ec3fb7ae9dc6b8e235455c864039193#diff-f7c8189352ab85ccb170d2f6f63a44aa46e1b2c88d6ed0cc6b07f8899f230d7aR93) `this._result = buffer.buffer;` Here is where base64-js uses Uint8Array https://github.com/beatgammit/base64-js/blob/master/index.js#L9...
Hey @CodyJasonBennett! Do you have updates on this? Were you able to get it to work?
I'm getting the same error `UnsatisfiedLinkError... __emutls_get_address` @syntheticmagus or @pingumen96 were you able to fix it?
Hey Guys, I need to use custom fonts @Tanatcu @tebatalla @hvlong do you have any updates or workarounds?
Guys, if you need a workaround to render custom fonts you can just add `@font-face { font-family: 'YourFontName'; src: url('FontURL.ttf'); }` to the index.html file