Answers for "react native dynamic style"

1

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>
Posted by: Guest on May-23-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language