Answers for "react native style variable"

0

react native style variable

//you can use variables in the StyleSheet
const textColor = "white";
const font = 50;

const PresetStyle = StyleSheet.create({
  headderText: {
    color: textColor,
    fontSize: font,
    textAline: "center"
  },
})
Posted by: Guest on October-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language