Created
September 10, 2023 13:20
-
-
Save andrew-levy/53fce4daf7eb300b41f926d5ac665dc2 to your computer and use it in GitHub Desktop.
Default Styles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { styled } from 'style-direct-club'; | |
import { TouchableOpacity } from 'react-native'; | |
const StyledTouchableOpacity = styled(TouchableOpacity, { | |
defaultStyles: { | |
backgroundColor: 'blue', | |
padding: 10, | |
borderRadius: 8, | |
}, | |
}); | |
function App() { | |
return ( | |
<StyledTouchableOpacity padding={5}> | |
<Text color="white">Press Me!</Text> | |
</StyledTouchableOpacity> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment