React-Native код:
const StyledButton = styled.TouchableHighlight`
width:250px;
background-color:${props => (props.transparent ? "transparent" : "#f3f8ff")};
padding:15px;
border:${props => (props.transparent ? "1px solid #f3f8ff " : 0)}
justify-content:center;
margin-bottom:20px;
border-radius:24px
`;
StyledTitle = styled.Text`
text-transform: uppercase;
text-align: center;
font-weight: bold;
letter-spacing: 3;
color: ${props => (props.transparent ? "#f3f8ff " : "#666")};
`;
что означает «?
» в строках ниже:
background-color:${props => (props.transparent ? "transparent" : "#f3f8ff")};
border:${props => (props.transparent ? "1px solid #f3f8ff " : 0)};
color: ${props => (props.transparent ? "#f3f8ff " : "#666")};