React Native Inline Style
App Name :- Test
Component Name:- App.js
Using inline Style You can change Text color so many things like background color
---------------------------------------------------------------------------------------
import React, { Component } from 'react'
import { View, Text, Button, } from 'react-native';
class App extends Component {
render()
{
return(
<View>
<Text style={{color:'red'}}>ReactNative King</Text>
</View>
)
}
}
export default App;
Comments
Post a Comment