Commit 09e21340 authored by Hasith Yoman's avatar Hasith Yoman

Home page added

parent 08f3bf51
import { StyleSheet, Text, View, StatusBar } from 'react-native'
import React from 'react'
import Admin from './Admin/Admin'
import Stationsingle from './Station/Stationsingle'
import User from './User/User'
import BowserHome from './Bowser/Bowserhome'
export default function Home({ route,navigation }) {
const { userid,role } = route.params;
console.log(userid,role);
return (
<View style={{ flex: 1,alignContent:'center'}}>
<StatusBar barStyle = "light-content" hidden = {false} backgroundColor = "#560cce" color="#fff" translucent = {true}/>
{/* We need to specify what component need to render by user's role */}
{role == 'admin' && ( <Admin userid = {userid} role = "admin" />) }
{role == 'station' && ( <Stationsingle userid = {userid} />) }
{role == 'user' && ( <User userid = {userid} />) }
{role == 'bowser' && ( <BowserHome userid = {userid} />) }
</View>
)
}
const styles = StyleSheet.create({})
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment