blazerapp/app/Settings.js

123 lines
2.8 KiB
JavaScript
Raw Normal View History

2021-01-01 00:23:17 -05:00
import React from 'react';
2020-12-21 02:01:08 -05:00
import {
SafeAreaView,
StyleSheet,
ScrollView,
View,
Text,
StatusBar,
Modal,
TouchableHighlight,
Image,
2021-01-01 00:23:17 -05:00
FlatList,
TouchableOpacity,
2020-12-21 02:01:08 -05:00
} from 'react-native';
import {
Header,
LearnMoreLinks,
Colors,
DebugInstructions,
ReloadInstructions,
} from 'react-native/Libraries/NewAppScreen';
2021-01-01 00:23:17 -05:00
2020-12-21 02:01:08 -05:00
import styles from './styles/morestyles'
2021-01-01 00:23:17 -05:00
import LinearGradient from 'react-native-linear-gradient'
import Images from './Images'
2021-01-01 00:23:17 -05:00
import { NavigationContainer } from '@react-navigation/native'
import { createStackNavigator } from '@react-navigation/stack'
2021-07-12 16:12:32 -04:00
import I18n from './i18n';
import Language from './Language'
import Notifications from './Notifications'
2020-12-21 02:01:08 -05:00
2021-01-01 00:23:17 -05:00
const Stack = createStackNavigator()
2021-01-05 23:08:34 -05:00
class placeHoldingForNow extends React.Component{
constructor(props) {
super(props)
this.props = props
}
render() {
return (
<View style={{flex:1,backgroundColor:'red'}}>
<Text>
Coming Soon...
</Text>
</View>
)
}
}
2021-07-12 16:12:32 -04:00
class SettingSwitch extends React.Component {
2021-01-01 00:23:17 -05:00
constructor(props) {
2020-12-21 02:01:08 -05:00
super(props)
2021-01-01 00:23:17 -05:00
this.props = props
2020-12-21 02:01:08 -05:00
}
2021-01-01 00:23:17 -05:00
2020-12-21 02:01:08 -05:00
render() {
return (
2021-01-01 00:23:17 -05:00
<View style={{flex:1,backgroundColor:'red'}}>
<FlatList
data={[
2021-07-12 16:12:32 -04:00
{name:"Language",key:"language", img:Images.lang},
2021-01-05 23:08:34 -05:00
//{name:"Notifications",key:"notifications", img:Images.notifs},
2021-07-12 16:12:32 -04:00
//{name:"Language",key:"language", img:Images.lang}
//{name:"Notifications",key:"notifications", img:Images.notifs},\
2021-01-01 00:23:17 -05:00
]}
renderItem={({item})=>
<TouchableOpacity style={styles.moreitem} onPress={()=>this.props.navigation.navigate(item.key)}>
<Image source = {item.img} style = {{height: 40, width: 40, marginRight: 10, tintColor: '#e3e3e3'}}/>
2021-07-12 16:12:32 -04:00
2021-01-01 00:23:17 -05:00
<Text style={styles.moretext}>{I18n.t('settings.' + item.key)}</Text>
</TouchableOpacity>
}
/>
</View>
)
}
}
2021-07-12 16:12:32 -04:00
2021-01-01 00:23:17 -05:00
const background = (<LinearGradient
colors={['#f99', 'white']}
style = {{flex:1,borderBottomColor:'black',borderBottomWidth:0.5}}
/>)
class Settings extends React.Component {
render() {
return (
2021-07-12 16:12:32 -04:00
/*<View style={{flex:1,backgroundColor:'red'}}>
2021-06-26 17:19:29 -04:00
<Text>
Coming Soon...
</Text>
2021-07-12 16:12:32 -04:00
</View>*/
<NavigationContainer independent={true}>
2021-01-01 00:23:17 -05:00
<Stack.Navigator>
<Stack.Screen
name="Chooser"
2021-07-12 16:12:32 -04:00
component={SettingSwitch}
2021-01-01 00:23:17 -05:00
options={{
2021-07-12 16:12:32 -04:00
title:I18n.t('more.Settings'),
2021-01-01 00:23:17 -05:00
headerTitleStyle:styles.headerTitle,
2021-07-12 16:12:32 -04:00
headerLeft:null,
2021-01-01 00:23:17 -05:00
headerBackground: ()=>background
}}
/>
2021-07-12 16:12:32 -04:00
{<Stack.Screen
2021-01-01 00:23:17 -05:00
name="language"
component={Language}
options={{
2021-07-12 16:12:32 -04:00
title:I18n.t('settings.language'),
headerTitleStyle:[styles.headerTitle,{alignSelf:'center'}],
headerLeft:null,
headerBackground: ()=>background
}}
2021-06-26 17:19:29 -04:00
/>}
2021-01-01 00:23:17 -05:00
</Stack.Navigator>
2021-07-12 16:12:32 -04:00
</NavigationContainer>
2020-12-21 02:01:08 -05:00
)
}
}
2021-01-01 00:23:17 -05:00
2020-12-21 02:01:08 -05:00
export default Settings;