tell me other things

This commit is contained in:
2023-11-16 03:28:07 +03:00
parent fc06a86059
commit 2c58bc9405
14 changed files with 138 additions and 47 deletions

View File

@@ -12,10 +12,11 @@ const SortingButton: FC<Props> = ({onPress}) => {
return (
<TouchableOpacity onPress={onPress}>
<View style={styles.container}>
<View style={styles.imageWrapper}>
<Image style={styles.image} source={require('assets/icons/sorting.png')}/>
<Image style={styles.image} source={require('assets/icons/filter.png')}/>
</View>
<DText>Сортировка</DText>
<DText>Фильтр</DText>
</View>
</TouchableOpacity>
@@ -27,7 +28,7 @@ const styles = StyleSheet.create({
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
columnGap: responsiveWidth(1)
columnGap: responsiveWidth(1),
},
imageWrapper: {
width: RFPercentage(3),