-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Foi adicionado a imagem da logo, onde adicionando a imagem PNG em 1x,…
… 2x e 3x por conta da densidade de pixel. Tambem foi importado fontes externas para a aplicação. Alem de começar a codificar a estilização da pagina signIn.
- Loading branch information
1 parent
719231b
commit 5f5173c
Showing
13 changed files
with
59 additions
and
4 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
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,13 @@ | ||
module.exports = { | ||
project: { | ||
ios: { | ||
|
||
}, | ||
android: { | ||
|
||
}, | ||
}, | ||
assets: [ | ||
'./assets/fonts/' | ||
] | ||
} |
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,2 @@ | ||
// Faz ele entender que esses arquivos podem ser importados dentro da aplicação | ||
declare module '*.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.
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 |
---|---|---|
@@ -1,9 +1,17 @@ | ||
import React from 'react'; | ||
import { Image } from 'react-native'; | ||
|
||
import { Container } from './styles'; | ||
import { Container, Title } from './styles'; | ||
|
||
import logoImg from '../../assets/logo.png'; | ||
|
||
const SignIn: React.FC = () => { | ||
return <Container />; | ||
return ( | ||
<Container> | ||
<Image source={logoImg} /> | ||
<Title>Faça seu Logon</Title> | ||
</Container> | ||
); | ||
}; | ||
|
||
export default SignIn; |
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,3 +1,13 @@ | ||
import styled from 'styled-components/native'; | ||
|
||
export const Container = styled.View``; | ||
export const Container = styled.View` | ||
flex: 1; | ||
align-items: center; | ||
justify-content: center; | ||
`; | ||
export const Title = styled.Text` | ||
font-size: 24px; | ||
color: #f4ede8; | ||
font-family: 'RobotoSlab-Medium'; | ||
margin: 64px 0 24px; | ||
`; |