Browse Source

Improved readability

Arnaud Vergnet 3 years ago
parent
commit
49fa8a82e3
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/screens/Services/ServicesScreen.js

+ 1
- 1
src/screens/Services/ServicesScreen.js View File

@@ -203,13 +203,13 @@ class ServicesScreen extends React.Component<Props> {
203 203
             <TouchableRipple
204 204
                 style={{
205 205
                     margin: 5,
206
+                    marginBottom: 20,
206 207
                 }}
207 208
                 onPress={() => this.props.navigation.navigate("services-section", {data: item})}
208 209
             >
209 210
                 <View>
210 211
                     <Card.Title
211 212
                         title={item.title}
212
-                        subtitle={item.description}
213 213
                         left={(props) => this.getAvatar(props, item.image)}
214 214
                         right={(props) => <List.Icon {...props} icon="chevron-right"/>}
215 215
                     />

Loading…
Cancel
Save