-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskin.js
235 lines (227 loc) · 7.2 KB
/
skin.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
import React, { Component, useState } from 'react';
import { ImageBackground, Switch, StyleSheet } from 'react-native';
import {
Container,
Text,
View,
Header,
Title,
ListItem,
List,
Button,
Left,
Right,
Body,
Icon,
} from 'native-base';
import Sound from 'react-native-sound';
let sound_1 = new Sound(require('./o1.mp3'));
let sound_2 = new Sound(require('./o2.mp3'));
const styles = StyleSheet.create({
ListItem: {
marginHorizontal: 40,
flexDirection: 'row',
},
itemText: {
fontSize: 24,
},
align: {
alignSelf: 'flex-end',
},
div: {
opacity: 0.5
}
});
export default class skin extends Component {
constructor(props) {
super(props);
this.state = {
BG: null,
skin: null,
};
}
render() {
let time = this.state;
let isEnabled = false;
let eisEnabled = true;
const { navigation } = this.props;
const toggleSwitch = () => {
isEnabled = !isEnabled;
};
return (
<Container>
<Header
style={{ backgroundColor: '#00bfff' }}
androidStatusBarColor="#00bfff"
iosBarStyle="light-content">
<Left>
<Button transparent onPress={() => navigation.openDrawer()}>
<Icon name="menu" />
</Button>
</Left>
<Body>
<Title>个性化</Title>
</Body>
<Right>
<Button
transparent
onPress={() => {
setTimeout(() => {
// alert('同步失败!\n请检查与服务器的网络连接!');
alert("同步成功!\n用户ID:114514");
}, 500);
}}>
<Icon name="cloud" />
</Button>
</Right>
</Header>
<ImageBackground
source={require('./p1.png')}
style={{
width: '100%',
height: '100%',
}}
imageStyle={{
opacity: 0.3,
// backgroundColor: '#F0FFFF',
}}>
<View>
<List>
<ListItem style={styles.ListItem}>
<Left>
<Text style={styles.itemText}>简洁模式</Text>
</Left>
<Right>
<Switch
trackColor={{ false: '#767577', true: '#81b0ff' }}
thumbColor={isEnabled ? '#f5dd4b' : '#f4f3f4'}
ios_backgroundColor="#3e3e3e"
onValueChange={toggleSwitch}
value={isEnabled}
disabled={true}
style={styles.align}
/>
</Right>
</ListItem>
<ListItem style={styles.ListItem}>
<Left>
<Text style={styles.itemText}>二次元模式</Text>
</Left>
<Right>
<Switch
style={{ opacity: 0.5 }}
trackColor={{ false: '#767577', true: '#81b0ff' }}
thumbColor={eisEnabled ? '#f5dd4b' : '#f4f3f4'}
ios_backgroundColor="#3e3e3e"
onValueChange={toggleSwitch}
value={eisEnabled}
disabled={false}
style={styles.align}
/>
</Right>
</ListItem>
<ListItem itemDivider style={styles.div}>
<Text>多彩模式个性化</Text>
</ListItem>
<ListItem style={styles.ListItem}>
<Left>
<Text style={styles.itemText}>首页卡片背景 </Text>
</Left>
<Right>
<Button info bordered style={styles.align}>
<Icon name="camera" />
</Button>
</Right>
</ListItem>
<ListItem style={styles.ListItem}>
<Left>
<Text style={styles.itemText}>种草机背景 </Text>
</Left>
<Right>
<Button info bordered style={styles.align}>
<Icon name="camera" />
</Button>
</Right>
</ListItem>
<ListItem itemDivider style={styles.div}>
<Text>简洁模式个性化</Text>
</ListItem>
<ListItem style={styles.ListItem}>
<Left>
<Text style={styles.itemText}>主题色 </Text>
</Left>
<Right>
<Button info bordered style={styles.align}>
<Icon name="color-filter" />
</Button>
</Right>
</ListItem>
{/* <ListItem>
<Text>不看看ACGN里面怎么定义幸福吗?</Text>
<Button
info
bordered
onPress={() => {
fetch('https://otaku.matrix72.top/')
.then(res => res.text())
.then(json => alert(json));
}}>
<Icon name="key" />
</Button>
</ListItem>
<ListItem>
<Text>钉宫一顿骂,胜读十年书~</Text>
<Button
info
bordered
onPress={() => {
sound_2.play();
}}>
<Icon name={'play'} />
</Button>
<Text style={{width: 10}} />
<Button
info
bordered
onPress={() => {
sound_1.play();
}}>
<Icon name={'play'} />
</Button>
</ListItem>
<ListItem>
<Text>二次元随机萌音!</Text>
<Button
info
bordered
onPress={() => {
var xxx = new Sound(
'https://baka.matrix72.top/',
Sound.MAIN_BUNDLE,
error => {
if (error) {
console.log('failed to load the sound', error);
return;
}
xxx.play(success => {
if (success) {
console.log('successfully finished playing');
} else {
console.log(
'playback failed due to audio decoding errors',
);
}
});
},
);
}}>
<Icon name={'play'} />
</Button>
</ListItem> */}
</List>
</View>
</ImageBackground>
</Container>
);
}
}