Skip to content

Commit

Permalink
primeiro dia
Browse files Browse the repository at this point in the history
  • Loading branch information
Felipe Mamede committed Jun 22, 2021
0 parents commit c2a694e
Show file tree
Hide file tree
Showing 21 changed files with 6,456 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .expo-shared/assets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true,
"40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true
}
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
node_modules/
.expo/
npm-debug.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
*.orig.*
web-build/

# macOS
.DS_Store
8 changes: 8 additions & 0 deletions App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from 'react';
import { SignIn } from './src/screens/SignIn';

export default function App() {
return (
<SignIn />
);
}
32 changes: 32 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"expo": {
"name": "gameplay",
"slug": "gameplay",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#070B24"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
}
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}
Binary file added assets/adaptive-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 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.
Binary file added assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions babel.config.js
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'],
};
};
25 changes: 25 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"dependencies": {
"expo": "~41.0.1",
"expo-status-bar": "~1.0.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz",
"react-native-web": "~0.13.12"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"typescript": "~4.0.0"
},
"private": true
}
1 change: 1 addition & 0 deletions src/@types/png.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
declare module "*"
Binary file added src/assets/discord.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/discord.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/illustration.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions src/components/ButtonIcon/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import React from 'react';
import {
Text,
Image,
View,
TouchableOpacity,
TouchableOpacityProps
} from 'react-native';

import DiscordImg from '../../assets/discord.png';
import { styles } from './styles'

type Props = TouchableOpacityProps & {
title: string;
}

export function ButtonIcon({ title, ...rest }: Props) {
return (
<TouchableOpacity style={styles.container} {...rest}>
<View style={styles.iconWrapper}>
<Image source={DiscordImg} style={styles.icon} />
</View>

<Text style={styles.title}>
{ title }
</Text>
</TouchableOpacity>
);
}
31 changes: 31 additions & 0 deletions src/components/ButtonIcon/styles.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { StyleSheet } from 'react-native'
import { theme } from '../../global/styles/theme'

export const styles = StyleSheet.create({
container: {
width: '100%',
height: 56,
backgroundColor: theme.colors.primary,
borderRadius: 8,
flexDirection: 'row',
alignItems: 'center'
},
iconWrapper: {
width: 56,
height: 56,
justifyContent: 'center',
alignItems: 'center',
borderRightWidth: 1,
borderColor: theme.colors.line
},
icon: {
width: 24,
height: 18,
},
title: {
flex: 1,
color: theme.colors.heading,
fontSize: 15,
textAlign: 'center'
},
})
8 changes: 8 additions & 0 deletions src/global/styles/theme.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export const theme = {
colors: {
background: '#0D133D',
heading: '#DDE3F0',
primary: '#E51C44',
line: '#991F36'
}
}
46 changes: 46 additions & 0 deletions src/screens/SignIn/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import React from 'react';
import {
Text,
View,
Image,
StatusBar
} from 'react-native';

import IllustrationImg from '../../assets/illustration.png'
import { ButtonIcon } from '../../components/ButtonIcon'
import { styles } from './styles'

export function SignIn() {
return (
<View style={styles.container}>
<StatusBar
barStyle="light-content"
backgroundColor="transparent"
translucent
/>
<Image
source={IllustrationImg}
style={styles.image}
resizeMode="stretch"
/>

<View style={styles.content}>
<Text style={styles.title}>
Organize {`\n`}
suas jogatinas {`\n`}
facilmente
</Text>

<Text style={styles.subTitle}>
Crie grupos para jogar seus games {`\n`}
favoritos com seus amigos
</Text>

<ButtonIcon
title={'Entrar com o Discord'}
activeOpacity={0.8}
/>
</View>
</View>
);
}
31 changes: 31 additions & 0 deletions src/screens/SignIn/styles.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { StyleSheet } from 'react-native'
import { theme } from '../../global/styles/theme'

export const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: theme.colors.background
},
image: {
width: '100%',
height: 360,
},
content: {
marginTop: -40,
paddingHorizontal: 50,
},
title: {
color: theme.colors.heading,
textAlign: 'center',
fontSize: 40,
marginBottom: 16,
},
subTitle: {
color: theme.colors.heading,
fontSize: 15,
textAlign: 'center',
marginBottom: 64,
}
})
6 changes: 6 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true
}
}
Loading

0 comments on commit c2a694e

Please sign in to comment.