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
{ | |
"extends": "expo/tsconfig.base", | |
"compilerOptions": { | |
"strict": true, | |
"baseUrl": "./", | |
"paths": { | |
"@dtos/*": [ | |
"src/dtos/*" | |
], | |
"@assets/*": [ |
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: { | |
green: { | |
700: '#00875F', | |
500: '#00B37E', | |
}, | |
gray: { | |
700: '#121214', | |
600: '#202024', | |
500: '#29292E', |
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
export default { | |
COLORS: { | |
WHITE: '#FFFFFF', | |
GREEN_700: '#00875F', | |
GREEN_500: '#00B37E', | |
RED: '#F75A68', | |
RED_DARK: '#AA2834', |
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
:root { | |
--primary: #00B37E; | |
--background: #121214; | |
--text: #FFF; | |
--caption: #8D8D99; | |
--gray: #E1E1E6; | |
--background-light: rgba(255, 255, 255, 0.05); | |
} | |
* { |
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
export default { | |
COLORS: { | |
BACKGROUND_900: "#232129", | |
BACKGROUND_800: "#312E38", | |
BACKGROUND_700: "#3E3B47", | |
WHITE: "#F4EDE8", | |
ORANGE: "#FF9000", | |
GRAY_100: "#999591", |
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
export const theme = { | |
colors: { | |
brand: '#8257E5', | |
background: '#09090A', | |
surface_primary: '#18181B', | |
surface_secondary: '#27272A', | |
text_primary: '#F4F4F5', | |
text_secondary: '#A1A1AA', |
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 React, { useState, useEffect } from 'react'; | |
import { View, Text, TouchableOpacity, ScrollView, ActivityIndicator } from 'react-native'; | |
import * as Network from 'expo-network'; | |
import styles from './styles'; | |
// COMPONENTES | |
import Header from '../../components/Header'; | |
import Footer from '../../components/Footer'; | |
import TaskCard from '../../components/TaskCard'; |
NewerOlder