File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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} ) ;
You can’t perform that action at this time.
0 commit comments