Vincent Riemer

Results 38 comments of Vincent Riemer

I just put up the source to the movie demo on github and it uses a basic [native module for loading fonts](https://github.com/vincentriemer/rndom-movies-demo/blob/master/dom/native-modules/FontLoader.js) that may be of some guidance. I'm reluctant...

Yeah that's my bad, I've since pushed out an update that *should* allow you to do what you did before, but your workaround should also still work.

I had started working on a logo myself. I'm not much of a designer but maybe it can act as a starting point: ![rn-dom-logo-large](https://user-images.githubusercontent.com/1398555/40279096-cb8168f4-5c0a-11e8-92fa-b3127e7d125a.png)

I just uncommented the modal example from RNTester so if you run `yarn run-examples`, and navigate to RNTester, you can develop against it.

Interesting, that warning/error is actually due to RNTester referencing an http image (only causes an issue on web, not native), and the result should just be that the image doesn't...

I did some experimenting with PIXI and while it's really nice it's also really heavy. I think when we do eventually go down this route it'll require a far more...

While it's certainly a possibility, due to the massive bundle sizes produced from this project I don't think it's going to be a priority to support incremental adoption for the...

Hello world clocks in at around....500kb....gzipped (lol)

Hopefully yeah, I think the biggest win could come from metro adding DCE/tree shaking, but it would be also cool if we could investigate if it would be possible to...

Webpack would need to understand the haste `@providesModule` annotations because that's how this project selectively overrides core components. EDIT: Not to mention the asset loading behavior which is very react-native/metro...