2022. 1. 12. 13:03ㆍReact Native/Basic

2022.01.11 - [React Native/Basic] - [React Native] React Native Component - 1. Intro
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 2. View, Text
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 3. Style
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 4. TouchEvent
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 5. Button
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 6. ScrollView
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 7. TextInput
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 9. Picker
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 10. Slider
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 11. ActivityIndicator
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 12. Image
2022.01.12 - [React Native/Basic] - [React Native] React Native Component - 13. Modal
8. Button, ScrollView, TextInput 심화
input.js
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React, {Component} from 'react';
import {View, Text, StyleSheet, TextInput} from 'react-native';
class Input extends Component {
state = {
myTextInput: 'asdfasdf',
};
onChangeInput = event => {
this.setState({
myTextInput: event,
});
};
render() {
return (
<View style={styles.mainView}>
<TextInput
value={this.state.myTextInput}
style={styles.input}
onChangeText={this.onChangeInput}
multiline={true}
maxLength={100}
autoCapitalize={'none'}
editable={true}
/>
</View>
);
}
}
const styles = StyleSheet.create({
mainView: {
width: '100%',
},
input: {
width: '100%',
backgroundColor: '#cccccc',
marginTop: 20,
fontSize: 25,
padding: 10,
},
});
export default Input;
App.js
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React, {Component} from 'react';
import {View, Text, StyleSheet, ScrollView, Button, TextInput} from 'react-native';
import Header from './src/header';
import Generator from './src/generator';
import NumList from './src/numlist';
import Input from './src/input';
class App extends Component {
state = {
myTextInput: '',
alphabet: ['a', 'b', 'c', 'd'],
};
onChangeInput = event => {
this.setState({
myTextInput: event,
});
};
onAddTextInput = () => {
this.setState(prevState => {
return {
myTextInput: '',
alphabet: [...prevState.alphabet, prevState.myTextInput],
};
});
};
render() {
return (
<View style={styles.mainView}>
<TextInput
value={this.state.myTextInput}
style={styles.input}
onChangeText={this.onChangeInput}
multiline={true}
maxLength={100}
autoCapitalize={'none'}
editable={true}
/>
<Button title="Add Text Input" onPress={this.onAddTextInput} />
<ScrollView style={{width: '100%'}}>
{this.state.alphabet.map((item, idx) => (
<Text style={styles.mainText} key={idx}>
{item}
</Text>
))}
</ScrollView>
</View>
);
}
}
const styles = StyleSheet.create({
mainView: {
backgroundColor: 'white',
flex: 1,
paddingTop: 50,
alignItems: 'center',
// justifyContent: 'center',
},
subView: {
backgroundColor: 'yellow',
marginBottom: 10,
},
anotherSubView: {
flex: 2,
backgroundColor: 'yellow',
marginBottom: 10,
width: '100%',
alignItems: 'center',
justifyContent: 'center',
},
mainText: {
fontSize: 20,
fontWeight: 'normal',
color: 'red',
padding: 20,
margin: 20,
backgroundColor: 'pink',
},
input: {
width: '100%',
backgroundColor: '#cccccc',
marginTop: 20,
fontSize: 25,
padding: 10,
},
});
export default App;
참고 자료
iOS/Android 앱 개발을 위한 실전 React Native - Basic - 인프런 | 강의
Mobile App Front-End 개발을 위한 React Native의 기초 지식 습득을 목표로 하고 있습니다. 진입장벽이 낮은 언어/API의 활용을 통해 비전문가도 쉽게 Native Mobile App을 개발할 수 있도록 제작된 강의입니다
www.inflearn.com
'React Native > Basic' 카테고리의 다른 글
[React Native] React Native Component - 10. Slider (0) | 2022.01.12 |
---|---|
[React Native] React Native Component - 9. Picker (0) | 2022.01.12 |
[React Native] React Native Component - 7. TextInput (0) | 2022.01.12 |
[React Native] React Native Component - 6. ScrollView (0) | 2022.01.12 |
[React Native] React Native Component - 5. Button (0) | 2022.01.12 |