import React,{Component} from 'react'
import {StyleSheet,Text,View,StatusBar} from 'react-native'
import BaseScreen from './../BaseScreen'
import I18n from "react-native-i18n";
import Icon from 'react-native-vector-icons/MaterialIcons'
import LottieView from 'lottie-react-native'; // if you have "esModuleInterop": true
import {Header} from "react-native-elements";
const theme=require('./../../utils/theme.json')
export default class Notifications extends BaseScreen{
static navigatorStyle = {
navBarBackgroundColor:theme.primaryDark,
navBarTextColor:'white',
statusBarBackgroundColor:theme.primaryDarkAdvanced,
navBarButtonColor:'white',
statusBarTextColorScheme: 'light',
};
static navigationOptions = {
headerTitle: I18n.t('NOTIFICATIONS'),
drawerIcon: ({ tintColor }) => (
),
};
constructor(props){
super(props,true)
}
render() {
return (
{I18n.t('NO_NOTIFICATION')}
)
}
}
const styles=StyleSheet.create({
container:{
flex:1,
backgroundColor:'white'
},
text:{
fontSize:17,
fontWeight:'bold',
},
lottie: {
width: 248,
height: 248
},
})