forked from cemaden-educacao/WPD-MobileApp
GabrielTrettel
3 years ago
3 changed files with 94 additions and 15 deletions
-
1src/app/screens/ActivateInstitution.js
-
47src/app/screens/ActivateInstitutionCode.js
-
57src/app/screens/ActivateInstitutionShowCode.js
@ -1,13 +1,60 @@ |
|||
import React, { useState, useContext } from "react"; |
|||
import {View, Text} from "react-native"; |
|||
import { View, Text } from "react-native"; |
|||
import { dimensions } from "../config/dimensions"; |
|||
import colors from "../config/colors"; |
|||
|
|||
function Header() { |
|||
return ( |
|||
<View |
|||
style={{ |
|||
paddingVertical: 24, |
|||
width: "100%", |
|||
justifyContent: "center", |
|||
alignItems: "center", |
|||
}} |
|||
> |
|||
<Text |
|||
style={{ |
|||
fontSize: dimensions.text.secondary, |
|||
color: colors.primary, |
|||
fontWeight: "bold", |
|||
}} |
|||
> |
|||
Código de ativação |
|||
</Text> |
|||
</View> |
|||
); |
|||
} |
|||
|
|||
export default function ActivateInstitutionShowCode({route}) { |
|||
const {code} = route.params |
|||
|
|||
export default function ActivateInstitutionShowCode({ route }) { |
|||
const { code } = route.params; |
|||
const [actCode, setActCode] = useState("123456789012"); |
|||
|
|||
return ( |
|||
<View> |
|||
<Text>{code}</Text> |
|||
<Header /> |
|||
<Text |
|||
style={{ |
|||
padding: 15, |
|||
marginTop: 24, |
|||
fontWeight: "bold", |
|||
textAlign: "center", |
|||
}} |
|||
> |
|||
Você é responsável pela institução. Compartilhe o código de ativação com |
|||
as demais pessoas vinculadas à instituição que utilizam o aplicativo |
|||
</Text> |
|||
|
|||
<Text |
|||
style={{ |
|||
padding: 15, |
|||
marginTop: 24, |
|||
fontWeight: "bold", |
|||
textAlign: "center", |
|||
fontSize: dimensions.text.header |
|||
}} |
|||
>{actCode}</Text> |
|||
</View> |
|||
) |
|||
); |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue