enable playstore billing

This commit is contained in:
ammarahm-ed
2020-09-15 15:07:42 +05:00
parent 2b76599bf7
commit 3604c0efaa
6 changed files with 19 additions and 226524 deletions

View File

@@ -1,20 +1,23 @@
import React from 'react';
import {TouchableOpacity} from 'react-native';
import {Text, TouchableOpacity, View} from 'react-native';
import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
import {SIZE} from '../../common/common';
export const ActionIcon = ({onPress, name, color,customStyle}) => {
export const ActionIcon = ({onPress, name, color, customStyle}) => {
return (
<TouchableOpacity
onPress={onPress}
style={[{
width: 50,
height: 40,
justifyContent: 'center',
alignItems: 'flex-end',
paddingRight: 12,
zIndex: 800,
},customStyle]}>
style={[
{
width: 50,
height: 40,
justifyContent: 'center',
alignItems: 'flex-end',
paddingRight: 12,
zIndex: 800,
},
customStyle,
]}>
<Icon name={name} color={color} size={SIZE.xxxl} />
</TouchableOpacity>
);