1 개요[ | ]
- React Native
- 리액트 네이티브
Java
Copy
import React, { Component } from 'react';
import { Image, ScrollView, Text } from 'react-native';
class AwkwardScrollingImageWithText extends Component {
render() {
return (
<ScrollView>
<Image source={{uri: 'https://i.chzbgr.com/full/7345954048/h7E2C65F9/'}} />
<Text>
On iOS, a React Native ScrollView uses a native UIScrollView.
On Android, it uses a native ScrollView.
On iOS, a React Native Image uses a native UIImageView.
On Android, it uses a native ImageView.
React Native wraps the fundamental native components, giving you
the performance of a native app, plus the clean design of React.
</Text>
</ScrollView>
);
}
}
2 개발 도구[ | ]
3 같이 보기[ | ]
4 참고[ | ]
- https://facebook.github.io/react-native/
- https://taegon.kim/archives/5745 인스타그램이 React Native로 앱을 만든 과정
- https://www.tutorialspoint.com/react_native/index.htm
- https://github.com/wix/react-native-navigation
- ↑ 이전의 하이브리드 프레임워크는 웹킷 기반이 많았는데, 웹킷 기반은 자바스크립트와 네이티브 코드 연결에 병목이 있음
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.