This commit is contained in:
2026-01-14 10:40:51 +00:00
parent 977bbfb848
commit d443933bdc
7 changed files with 22 additions and 809 deletions

View File

@@ -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;

View File

@@ -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' },
});
});

View File

@@ -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';

View File

@@ -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() {