forked from vergnet/application-amicale
Improved layout margins
This commit is contained in:
parent
217e918ce8
commit
82371e89e7
2 changed files with 6 additions and 2 deletions
|
@ -26,7 +26,7 @@ class ClubListHeader extends React.Component<Props> {
|
|||
selected={isItemInCategoryFilter(this.props.selectedCategories, [category.id])}
|
||||
mode={'outlined'}
|
||||
onPress={onPress}
|
||||
style={{marginRight: 5, marginBottom: 5}}
|
||||
style={{marginRight: 5, marginLeft: 5, marginBottom: 5}}
|
||||
key={key}
|
||||
>
|
||||
{category.name}
|
||||
|
|
|
@ -55,7 +55,11 @@ class ClubListItem extends React.Component<Props> {
|
|||
onPress={this.props.onPress}
|
||||
left={(props) => <Avatar.Image
|
||||
{...props}
|
||||
style={{backgroundColor: 'transparent'}}
|
||||
style={{
|
||||
backgroundColor: 'transparent',
|
||||
marginLeft: 10,
|
||||
marginRight: 10,
|
||||
}}
|
||||
size={64}
|
||||
source={{uri: this.props.item.logo}}/>}
|
||||
right={(props) => <Avatar.Icon
|
||||
|
|
Loading…
Reference in a new issue