Skip to content

Instantly share code, notes, and snippets.

@andrew-levy
Created September 10, 2023 13:20
Show Gist options
  • Save andrew-levy/53fce4daf7eb300b41f926d5ac665dc2 to your computer and use it in GitHub Desktop.
Save andrew-levy/53fce4daf7eb300b41f926d5ac665dc2 to your computer and use it in GitHub Desktop.
Default Styles
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