react native conditions

react native conditions

import React from 'react'
import {View, Text,StyleSheet} from 'react-native'
import Constants from 'expo-constants'
function App() {
let name="sagar"
return (
<View style={des.view}>
{
name ? <Text>name:{name} variable mein data hai</Text>:<Text>data nahi hai</Text>
}
</View>
)

}
const des=StyleSheet.create({

view:
{
flex:1,

padding:20

},
img:
{
flex:1
}
})
export default App;

0 Comments