Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

react native dynamic style

//you can use a function to generate a styleSheet dynamically
styleFunction (option) {
  return {
    borderWidth: 2,
    margin: option,
  }
}

<View style={this.styleFunction(15)}>
	//things
</View>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #react #native #dynamic #style
ADD COMMENT
Topic
Name
7+5 =