esafirm
Esa Firman
Does it run on a WebView?
No.
Does it compile to Native Code?
No.
So, is React Native truly native?
Yes and No.
Probably.
THE TAGLINE
https://speakerdeck.com/hswolff/going-native-with-react-native
Text
Text
From React Native Overview, Bonnie Eisenman
Text
import React from 'react';
import {
AppRegistry,
StyleSheet,
Text
} from 'react-native';
export default class RnIntro extends React.Component {
render() {
return (
<Text>Hello World</Text>
);
}
}
const styles = StyleSheet.create({
title: {
fontSize: 20,
textAlign: 'center'
}
});
AppRegistry.registerComponent('rnintro', () => rnintro);
Hot Reloading
Shared Code
Community Support
Lots of 3rd party libraries
Extendable & Interoperable with Native Code!
OTA Update!
APK size
Best practices
Need more optimization
Simpler tools