-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleaderboardMenu.js
39 lines (36 loc) · 929 Bytes
/
leaderboardMenu.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
import React, { useState } from 'react';
import {
StyleSheet,
View,
Text,
TouchableOpacity,
} from 'react-native';
import { SettingsContext } from './settings/SettingsContext';
import CustomText from './CustomText';
import { ButtonText } from './buttonText'
export const LeaderboardMenu = () => {
return(
<View style={styles.container}>
<CustomText style={styles.titleTxt}>Leaderboards:</CustomText>
<CustomText style={styles.subtitleTxt}>Coming Soon!</CustomText>
</View>
);
};
const styles = StyleSheet.create({
container: {
width: '100%',
height: '100%',
alignItems: 'center',
},
titleTxt: {
fontSize: 40,
fontFamily: 'Billy-Bold',
textAlign: 'center',
paddingVertical: 60,
},
subtitleTxt: {
fontSize: 38,
fontFamily: 'Billy',
textAlign: 'center',
},
});