import React from 'react';
import { StyleSheet, View, Text, TouchableHighlight, Platform } from 'react-native';
const Row = ({title, onPress, platform, testID}: any) => {
if (platform && platform !== Platform.OS) {
return ;
}
return (
{title}
);
};
const styles = StyleSheet.create({
row: {
height: 48,
paddingHorizontal: 16,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
borderBottomWidth: 1,
borderBottomColor: 'rgba(0, 0, 0, 0.054)',
},
text: {
fontSize: 16,
},
});
export default Row;