-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Jônatas A. <[email protected]> Co-authored-by: Luiz <[email protected]> Co-authored-by: herick lima <[email protected]>
- Loading branch information
1 parent
81bc702
commit fbbc4e2
Showing
44 changed files
with
11,849 additions
and
104 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true, | ||
"40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,104 +1,14 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
|
||
# Diagnostic reports (https://nodejs.org/api/report.html) | ||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
*.lcov | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# TypeScript v1 declaration files | ||
typings/ | ||
|
||
# TypeScript cache | ||
*.tsbuildinfo | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Microbundle cache | ||
.rpt2_cache/ | ||
.rts2_cache_cjs/ | ||
.rts2_cache_es/ | ||
.rts2_cache_umd/ | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
.env.test | ||
|
||
# parcel-bundler cache (https://parceljs.org/) | ||
.cache | ||
|
||
# Next.js build output | ||
.next | ||
|
||
# Nuxt.js build / generate output | ||
.nuxt | ||
dist | ||
|
||
# Gatsby files | ||
.cache/ | ||
# Comment in the public line in if your project uses Gatsby and *not* Next.js | ||
# https://nextjs.org/blog/next-9-1#public-directory-support | ||
# public | ||
|
||
# vuepress build output | ||
.vuepress/dist | ||
|
||
# Serverless directories | ||
.serverless/ | ||
|
||
# FuseBox cache | ||
.fusebox/ | ||
|
||
# DynamoDB Local files | ||
.dynamodb/ | ||
|
||
# TernJS port file | ||
.tern-port | ||
.expo/ | ||
dist/ | ||
npm-debug.* | ||
*.jks | ||
*.p8 | ||
*.p12 | ||
*.key | ||
*.mobileprovision | ||
*.orig.* | ||
web-build/ | ||
|
||
# macOS | ||
.DS_Store |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { useState } from "react"; | ||
import { StatusBar } from "expo-status-bar"; | ||
import { StyleSheet, Text, View } from "react-native"; | ||
import * as Font from "expo-font"; | ||
import AppLoading from "expo-app-loading"; | ||
import Routes from "./navigation"; | ||
|
||
const fecthFonts = () => { | ||
return Font.loadAsync({ | ||
"Ubuntu-Regular": require("./assets/fonts/Ubuntu-Regular.ttf"), | ||
"Ubuntu-Bold": require("./assets/fonts/Ubuntu-Bold.ttf"), | ||
"Ubuntu-Light": require("./assets/fonts/Ubuntu-Light.ttf"), | ||
"Ubuntu-Medium": require("./assets/fonts/Ubuntu-Medium.ttf"), | ||
"Ubuntu-Italic": require("./assets/fonts/Ubuntu-Italic.ttf"), | ||
}); | ||
}; | ||
|
||
export default function App() { | ||
const [fontLoaded, setFontLoaded] = useState(false); | ||
|
||
if (!fontLoaded) { | ||
return ( | ||
<AppLoading | ||
startAsync={fecthFonts} | ||
onFinish={() => setFontLoaded(true)} | ||
onError={console.warn} | ||
/> | ||
); | ||
} | ||
|
||
return <Routes />; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"expo": { | ||
"name": "ballerini-dev-meet", | ||
"slug": "ballerini-dev-meet", | ||
"version": "1.0.0", | ||
"orientation": "portrait", | ||
"icon": "./assets/icon.png", | ||
"splash": { | ||
"image": "./assets/splash.png", | ||
"resizeMode": "contain", | ||
"backgroundColor": "#ffffff" | ||
}, | ||
"updates": { | ||
"fallbackToCacheTimeout": 0 | ||
}, | ||
"assetBundlePatterns": [ | ||
"**/*" | ||
], | ||
"ios": { | ||
"supportsTablet": true | ||
}, | ||
"android": { | ||
"adaptiveIcon": { | ||
"foregroundImage": "./assets/adaptive-icon.png", | ||
"backgroundColor": "#FFFFFF" | ||
} | ||
}, | ||
"web": { | ||
"favicon": "./assets/favicon.png" | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
const arrowWhite = | ||
"https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/Arrow-White_vapvlb.png"; | ||
const arrowOrange = | ||
"https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/Arrow-Orange_s7p9mz.png"; | ||
const programingTerminal = | ||
"https://res.cloudinary.com/dcy5jian9/image/upload/v1646193811/Programing-Terminal_nzshuy.png"; | ||
const laptopProgrammingCode = | ||
"https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/laptop-programming-code_gfx4wn.png"; | ||
const iPhoneXWhite = | ||
"https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/iPhone-X-White_ko6ugi.png"; | ||
const iPhoneXOrange = | ||
"https://res.cloudinary.com/dcy5jian9/image/upload/v1646193831/iPhone-X-Orange_lhiend.png"; | ||
const hierarchy = | ||
"https://res.cloudinary.com/dcy5jian9/image/upload/v1646193827/hierarchy_irdi1y.png"; | ||
const person = | ||
"https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/person_x5ciqo.png"; | ||
const LOGO = | ||
"https://res.cloudinary.com/dcy5jian9/image/upload/v1646193827/LOGO_j4qmf4.png"; | ||
const Pattern = | ||
"https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/Pattern_j85dll.png"; | ||
|
||
export { | ||
arrowOrange, | ||
arrowWhite, | ||
programingTerminal, | ||
laptopProgrammingCode, | ||
iPhoneXWhite, | ||
iPhoneXOrange, | ||
hierarchy, | ||
person, | ||
LOGO, | ||
Pattern, | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = function(api) { | ||
api.cache(true); | ||
return { | ||
presets: ['babel-preset-expo'], | ||
}; | ||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { Text, View, Image, TouchableHighlight } from "react-native"; | ||
import styles from "./styles"; | ||
import { useRoute, useNavigation } from "@react-navigation/native"; | ||
|
||
const Navbar = () => { | ||
const navigation = useNavigation(); | ||
|
||
return ( | ||
<View style={styles.container}> | ||
<TouchableHighlight | ||
onPress={() => { | ||
navigation.navigate("EventPage" as any); | ||
}} | ||
> | ||
<View> | ||
<Text>Event</Text> | ||
</View> | ||
</TouchableHighlight> | ||
<TouchableHighlight | ||
onPress={() => { | ||
navigation.navigate("LoadingPage" as any); | ||
}} | ||
> | ||
<View> | ||
<Text>LoadingPage</Text> | ||
</View> | ||
</TouchableHighlight> | ||
<TouchableHighlight | ||
onPress={() => { | ||
navigation.navigate("EventPage" as any); | ||
}} | ||
> | ||
<View> | ||
<Text>EventPage</Text> | ||
</View> | ||
</TouchableHighlight> | ||
<TouchableHighlight | ||
onPress={() => { | ||
navigation.navigate("ChooseEvent" as any); | ||
}} | ||
> | ||
<View> | ||
<Text>ChooseEvent</Text> | ||
</View> | ||
</TouchableHighlight> | ||
</View> | ||
); | ||
}; | ||
|
||
export default Navbar; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { StyleSheet } from "react-native"; | ||
|
||
const styles = StyleSheet.create({ | ||
container: { | ||
display: "flex", | ||
flexDirection: "row", | ||
justifyContent: "space-between", | ||
}, | ||
}); | ||
|
||
export default styles; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Arrow-White: https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/Arrow-White_vapvlb.png | ||
Arrow-Orange: https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/Arrow-Orange_s7p9mz.png | ||
Programing-Terminal: https://res.cloudinary.com/dcy5jian9/image/upload/v1646193811/Programing-Terminal_nzshuy.png | ||
laptop-programming-code: https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/laptop-programming-code_gfx4wn.png | ||
iPhone-X-White: https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/iPhone-X-White_ko6ugi.png | ||
iPhone-X-Orange: https://res.cloudinary.com/dcy5jian9/image/upload/v1646193831/iPhone-X-Orange_lhiend.png | ||
hierarchy: https://res.cloudinary.com/dcy5jian9/image/upload/v1646193827/hierarchy_irdi1y.png | ||
person: https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/person_x5ciqo.png | ||
LOGO: https://res.cloudinary.com/dcy5jian9/image/upload/v1646193827/LOGO_j4qmf4.png | ||
Pattern: https://res.cloudinary.com/dcy5jian9/image/upload/v1646193820/Pattern_j85dll.png |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
declare module "*.png" { | ||
const value: any; | ||
export = value; | ||
} | ||
declare module "*.svg" { | ||
const value: any; | ||
export = value; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { NavigationContainer } from "@react-navigation/native"; | ||
import { createNativeStackNavigator } from "@react-navigation/native-stack"; | ||
|
||
import { ChooseEvent, EventPage, Home, LoadingPage } from "../views"; | ||
|
||
const Stack = createNativeStackNavigator(); | ||
|
||
function Routes() { | ||
return ( | ||
<NavigationContainer> | ||
<Stack.Navigator | ||
screenOptions={{ | ||
headerShown: false, | ||
}} | ||
> | ||
<Stack.Screen name="Home" component={Home} /> | ||
<Stack.Screen name="LoadingPage" component={LoadingPage} /> | ||
<Stack.Screen name="EventPage" component={EventPage} /> | ||
<Stack.Screen name="ChooseEvent" component={ChooseEvent} /> | ||
</Stack.Navigator> | ||
</NavigationContainer> | ||
); | ||
} | ||
|
||
export default Routes; |
Oops, something went wrong.