Skip to content

Commit beb3acb

Browse files
committed
Adds a link to react-interactable repo from the playground
1 parent 708a840 commit beb3acb

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

playground/src/App.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default class example extends Component {
8080
return (
8181
<ScrollView style={styles.menuContainer}>
8282
<TouchableOpacity onPress={ () => window.open('https://github.com/wix/react-native-interactable/blob/master/README.md')}>
83-
<Text style={styles.button2}>Documentation</Text>
83+
<Text style={[styles.button2, styles.doubleMargin]}>Documentation</Text>
8484
</TouchableOpacity>
8585

8686
<Text style={styles.seperatorText}>Basic Examples</Text>
@@ -160,7 +160,10 @@ export default class example extends Component {
160160
</TouchableOpacity>
161161

162162
<TouchableOpacity onPress={() => window.open('https://github.com/wix/react-native-interactable/blob/master/UX-INSPIRATIONS.md')}>
163-
<Text style={styles.button2}>UX Inspirations</Text>
163+
<Text style={[styles.button2]}>UX Inspirations</Text>
164+
</TouchableOpacity>
165+
<TouchableOpacity onPress={() => window.open('https://github.com/arqex/react-interactable')}>
166+
<Text style={[styles.button2, styles.doubleMargin]}>Made with react-interactable</Text>
164167
</TouchableOpacity>
165168
</ScrollView>
166169
);
@@ -231,6 +234,9 @@ const styles = StyleSheet.create({
231234
button2: {
232235
color: '#F2564D',
233236
fontSize: 20,
237+
marginBottom: 24
238+
},
239+
doubleMargin: {
234240
marginBottom: 48
235241
}
236242
});

0 commit comments

Comments
 (0)