...
|
...
|
@@ -41,14 +41,14 @@ export default class ShopTopBanner extends React.Component { |
|
|
resizeMode={'cover'}
|
|
|
>
|
|
|
<TouchableOpacity activeOpacity={0.5}
|
|
|
style={{ width: buttonWidth, height: buttonHeight,position: 'absolute',borderRadius: 5,backgroundColor:'red',bottom:15,right:15}}
|
|
|
style={{ width: buttonWidth, height: buttonHeight,position: 'absolute',borderRadius: 5,backgroundColor:'transparent',bottom:15,right:15}}
|
|
|
onPress={() => {
|
|
|
this.props.onPressCollection && this.props.onPressCollection(!this.props.info.is_addFav);
|
|
|
}}>
|
|
|
<Image
|
|
|
source={buttonIcon}
|
|
|
style={{ width: buttonWidth, height: buttonHeight,position: 'absolute',borderRadius: 5}}
|
|
|
resizeMode={'cover'}/>
|
|
|
style={{ width: buttonWidth, height: buttonHeight,position: 'absolute',borderRadius: 5,backgroundColor: 'transparent'}}
|
|
|
resizeMode={'contain'}/>
|
|
|
</TouchableOpacity>
|
|
|
|
|
|
<View style={{width: 50, height:50, backgroundColor:'white',bottom: -backgroundHeight + 15 + 50,marginLeft:15}}>
|
...
|
...
|
|