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
<Canvas style={styles.canvas}> | |
<Path path="M232.405 231.922C232.005 231.922 231.648 231.666 231.52 231.287C229.729 225.979 228.387 224.638 223.079 222.846C222.7 222.718 222.444 222.362 222.444 221.961C222.444 221.561 222.7 221.204 223.079 221.076C228.388 219.285 229.729 217.943 231.52 212.635C231.648 212.255 232.004 212 232.405 212C232.806 212 233.162 212.255 233.29 212.635C235.082 217.943 236.423 219.284 241.731 221.076C242.11 221.204 242.366 221.561 242.366 221.961C242.366 222.362 242.11 222.718 241.731 222.846C236.423 224.638 235.082 225.979 233.29 231.287C233.162 231.666 232.806 231.922 232.405 231.922Z"> | |
<LinearGradient | |
start={{ x: 222, y: 212 }} | |
end={{ x: 238, y: 222 }} | |
colors={[THEME.COLORS.STAR_BLUE, THEME.COLORS.BRAND_LIGHT]} | |
/> | |
</Path> | |
<Path | |
opacity={0.2} |
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 { WeatherAPIResponseProps } from "@services/getWeatherByCityService"; | |
const currentDay = new Date(); | |
const nextDay = new Date(); | |
nextDay.setDate(currentDay.getDate() + 1) | |
export const mockWeatherAPIResponse: WeatherAPIResponseProps = { | |
list: [ | |
{ | |
pop: 0.5, |
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
{ | |
// EDITOR | |
"editor.fontFamily": "Fira Code", | |
"editor.wordWrap": "on", | |
"editor.fontSize": 22, | |
"editor.lineHeight": 38, | |
"editor.tabSize": 2, | |
"editor.bracketPairColorization.enabled": true, | |
"editor.guides.bracketPairs": true, | |
"editor.minimap.enabled": false, |
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
"paths": { | |
"@dtos/*": ["./src/dtos/*"], | |
"@assets/*": ["./src/assets/*"], | |
"@components/*": ["./src/components/*"], | |
"@screens/*": ["./src/screens/*"], | |
"@storage/*": ["./src/storage/*"], | |
"@utils/*": ["./src/utils/*"], | |
"@services/*": ["./src/services/*"], | |
"@hooks/*": ["./src/hooks/*"], | |
"@contexts/*": ["./src/contexts/*"], |
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
{ | |
colors: { | |
green500: "#00B37E", | |
green600: "#16a34a", | |
green700: "#00875F", | |
gray100: "#E1E1E6", | |
gray200: "#C4C4CC", | |
gray300: "#7C7C8A", | |
gray400: "#323238", |
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 PAGES = [ | |
{ id: "1", title: "React Native" }, | |
{ id: "2", title: "Expo" }, | |
{ id: "3", title: "Links" }, | |
{ id: "4", title: "Projetos" }, | |
{ id: "5", title: "Node.js" }, | |
{ id: "6", title: "Expo Router" }, | |
{ id: "7", title: "Youtube" }, | |
{ id: "8", title: "Projetos" }, | |
] |
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
{ | |
// EDITOR | |
"editor.wordWrap": "on", | |
"editor.fontSize": 16, | |
"editor.lineHeight": 28, | |
"editor.tabSize": 2, | |
"editor.bracketPairColorization.enabled": true, | |
"editor.guides.bracketPairs": true, | |
"editor.minimap.enabled": false, | |
"editor.formatOnSave": true, |
OlderNewer