This repository was archived by the owner on Jul 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSetting.js
99 lines (91 loc) · 2.64 KB
/
Setting.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import React, { Component } from 'react'
import {connect} from 'react-redux'
import { View, StyleSheet,Linking,Alert } from 'react-native'
import Icon from 'react-native-vector-icons/Entypo'
import { Button,Text,Card,SocialIcon,Avatar } from 'react-native-elements'
import CS from '../coreStyles'
import {
resetData,
} from '../actions'
class Setting extends Component {
handleSubmit=(e)=>{
Alert.alert(
'Are you sure?',
'This will remove all of your decks and reset the app!',
[
{text: 'NO', onPress: () => console.log("Cancel reset"), style: 'cancel'},
{text: 'YES', onPress: () => {
this.props.resetData()
this.props.navigation.navigate('Deck')
}},
]
)
}
render() {
return (
<View style={styles.container}>
<Card title="RESET DATA">
<View>
<Text style={{color:'gray', padding: 12, textAlign:'center'}}> Remove all user data ?</Text>
<Button
title=" RESET"
raised={true}
onPress={this.handleSubmit}
icon={
<Icon
name="back-in-time"
size={15}
color="white"
/>
}
linearGradientProps={CS.buttonGradient}
/>
</View>
</Card>
<Card title="Contact Developer">
<View style={{justifyContent:'center', alignItems:'center'}}>
<Avatar
rounded
size="xlarge"
title="SP"
source={{
uri:
'https://www.gravatar.com/avatar/41c5c018961438b2b5f1eff46ee03e17?s=200',
}}
onPress={ ()=> Linking.openURL('https://shubhamprakash.dev') }
/>
<Text h4>Shubham Prakash</Text>
<View style={{flexDirection:'row'}}>
<SocialIcon
light
type='linkedin'
onPress={ ()=> Linking.openURL('https://www.linkedin.com/in/ishubhamprakash/') }
/>
<SocialIcon
light
type='github'
onPress={ ()=> Linking.openURL('https://github.com/i-shubhamprakash/') }
/>
<SocialIcon
light
type='twitter'
onPress={ ()=> Linking.openURL('https://twitter.com/isuvm') }
/>
</View>
</View>
</Card>
</View>
)
}
}
const styles= StyleSheet.create({
container:{
flex:1,
textAlign: 'center',
justifyContent: 'center',
}
})
const mapDispatchToProps={
resetData,
}
export default connect(null,mapDispatchToProps)(Setting)