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
card: { | |
shadowColor: '#000', | |
shadowOffset: { | |
width: 0, | |
height: 5, | |
}, | |
shadowOpacity: 0.29, | |
shadowRadius: 4.65, | |
elevation: 7 | |
} |
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
const createStyles = () => | |
StyleSheet.create({ | |
image: { | |
borderRadius: Spacing.tiny, | |
overflow: "hidden", | |
position: "relative", | |
}, | |
overlay: { | |
position: "absolute", | |
top: 0, |
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
// Explorer | |
ctrl + w + h = move to the file explorer. Then, use l to open the file. | |
cmd + shift + p or cmd + shift + x = type anything. Then + tab and + j to move up or + k to move down. | |
// Word | |
w = move forward to the first character of a word | |
W = move forward to the first character of a word ignoring special characters | |
b = move backwards to the first character of a word | |
B = move backwards to the first character of a word ignoring special characters | |
e = move forward to the end char of the word |