26.1.14
This commit is contained in:
@@ -292,4 +292,4 @@ const styles = StyleSheet.create({
|
||||
input: { borderWidth: 1, borderRadius: 10, padding: 12, height: 100, textAlignVertical: 'top' }
|
||||
});
|
||||
|
||||
export default AlunoHome;
|
||||
export default AlunoHome;
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
|
||||
import { Link, useRouter } from 'expo-router';
|
||||
import React, { useState } from 'react';
|
||||
import { useState } from 'react';
|
||||
import {
|
||||
ActivityIndicator,
|
||||
Alert,
|
||||
@@ -142,4 +142,4 @@ const styles = StyleSheet.create({
|
||||
footer: { flexDirection: 'row', justifyContent: 'center', marginTop: 40, paddingTop: 24, borderTopWidth: 1, borderTopColor: '#dfe6e9' },
|
||||
footerText: { color: '#636e72', fontSize: 15 },
|
||||
registerText: { color: '#0984e3', fontSize: 15, fontWeight: '700' },
|
||||
});
|
||||
});
|
||||
@@ -1,10 +1,12 @@
|
||||
//PÁGINA PERFIL DO ALUNO
|
||||
|
||||
import { Ionicons } from '@expo/vector-icons';
|
||||
import AsyncStorage from '@react-native-async-storage/async-storage';
|
||||
import { useRouter } from 'expo-router';
|
||||
import React, { useEffect, useState } from 'react';
|
||||
import { useEffect, useState } from 'react';
|
||||
import {
|
||||
Platform, SafeAreaView, ScrollView, StatusBar, StyleSheet,
|
||||
Text, TouchableOpacity, View
|
||||
Platform, SafeAreaView, ScrollView, StatusBar, StyleSheet,
|
||||
Text, TouchableOpacity, View
|
||||
} from 'react-native';
|
||||
import { useTheme } from '../themecontext';
|
||||
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
|
||||
|
||||
// app/register.tsx - TELA DE CRIAR CONTA (CORRIGIDA)
|
||||
// app/register.tsx - TELA DE CRIAR CONTA
|
||||
|
||||
|
||||
import React, { useState } from 'react';
|
||||
import {
|
||||
View,
|
||||
TextInput,
|
||||
TouchableOpacity,
|
||||
Text,
|
||||
StyleSheet,
|
||||
ScrollView,
|
||||
Alert,
|
||||
ActivityIndicator,
|
||||
KeyboardAvoidingView,
|
||||
Platform
|
||||
} from 'react-native';
|
||||
import { Link } from 'expo-router';
|
||||
import { StatusBar } from 'expo-status-bar';
|
||||
import { useState } from 'react';
|
||||
import {
|
||||
ActivityIndicator,
|
||||
Alert,
|
||||
KeyboardAvoidingView,
|
||||
Platform,
|
||||
ScrollView,
|
||||
StyleSheet,
|
||||
Text,
|
||||
TextInput,
|
||||
TouchableOpacity,
|
||||
View
|
||||
} from 'react-native';
|
||||
import { SafeAreaView } from 'react-native-safe-area-context';
|
||||
|
||||
export default function CriarContaScreen() {
|
||||
|
||||
Reference in New Issue
Block a user