text input in react native



import React,{useState} from 'react'
import {View,Text,Image,TextInput} from 'react-native'
import Constants from 'expo-constants'
function App()
{
return(
<View style={{paddingTop:Constants.statusBarHeight}}>
<Image source={{uri:'https://s3-ap-southeast-1.amazonaws.com/tv-prod/member/photo/6405369-large.png'}} style={{height:250,width:320,marginLeft:50}}/>
<Text style={{textAlign:'center',fontSize:30,fontWeight:'bold',fontFamily:'algerian',color:'darkblue'}}>happy new year</Text>
<TextInput placeholder='enter data' style={{padding:10,backgroundColor:'rgba(5,4,7,0.3)',margin:10,color:'white',fontSize:20}}/>

</View>
)
}

export default App

0 Comments