재활용할 기본 버튼들을 따로 만들어서 관리하는게 유지보수에 좋을 것 같다.
src/atoms
react-native-elements로 작성한 기본 atom들
import { LightSearchBarProps } from '@types'
import React from 'react'
import { TextInputProps, TouchableOpacity } from 'react-native'
import { ButtonProps, Image, Input, SearchBar, Text } from "react-native-elements"
import Icon from 'react-native-vector-icons/EvilIcons';
export const TextArea = (option: TextInputProps) => (
<Input
multiline
numberOfLines={4}
inputStyle={{ textAlign: "center" }}
{...option}
/>
)
export const NextButton = (props: { onPress: () => void }) => (
<Image
onPress={props.onPress}
source={require('../../assets/next.png')}
style={{ width: 170, height: 77 }} />
)
export const LightSearchBar = (option: LightSearchBarProps) => {
option = {
...option,
placeholder: "검색어",
cancelButtonTitle: "취소",
}
return (
<SearchBar
platform="ios"
containerStyle={{ backgroundColor: "transparent" }}
{...option}
/>
)
}
styled-components-components로 작성한 기본 atom들
import styled from "styled-components/native";
export const Container = styled.View`
flex: 1;
justify-content: center;
align-items: center;
`
export const Row = styled.View`
flex-direction: row;
justify-content: center;
align-items: center;
`
export const Button = styled.Button`
`