Skip to content

Commit

Permalink
app refeito
Browse files Browse the repository at this point in the history
  • Loading branch information
elto borges authored and elto borges committed Jan 19, 2025
1 parent c31c29b commit 0926b27
Show file tree
Hide file tree
Showing 39,126 changed files with 4,760,069 additions and 3,164 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
8 changes: 8 additions & 0 deletions .expo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
> Why do I have a folder named ".expo" in my project?
The ".expo" folder is created when an Expo project is started using "expo start" command.
> What do the files contain?
- "devices.json": contains information about devices that have recently opened this project. This is used to populate the "Development sessions" list in your development builds.
- "settings.json": contains the server configuration that is used to serve the application manifest.
> Should I commit the ".expo" folder?
No, you should not share the ".expo" folder. It does not contain any information that is relevant for other developers working on the project, it is specific to your machine.
Upon project creation, the ".expo" folder is already added to your ".gitignore" file.
3 changes: 3 additions & 0 deletions .expo/devices.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"devices": []
}
23 changes: 23 additions & 0 deletions App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import './gesture-handler';
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import Login from './src/pages/login';

import Routes from './src/routes/index.routes';
import {NavigationContainer} from '@react-navigation/native';

export default function App() {
return (
<NavigationContainer>
<Routes />
</NavigationContainer>
// <Login />

);
}

const styles = StyleSheet.create({
container: {

},
});
34 changes: 21 additions & 13 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
# U-gym - Gerenciador de Treino

[![React Native](https://img.shields.io/badge/React%20Native-0.72.3-blue)](https://reactnative.dev/)
[![Expo](https://img.shields.io/badge/Expo-49.0.0-000000)](https://expo.dev/)
[![License](https://img.shields.io/badge/license-MIT-green)](./LICENSE)

**U-gym** é um aplicativo mobile para ajudar os usuários a gerenciar seus treinos de forma simples e eficiente. Ele foi desenvolvido utilizando **React Native** e **Expo**, garantindo uma experiência multiplataforma e fácil de manter.

# Projeto de Site: UGYM
### Descrição
---

Este projeto é um sistema de gerenciamento de treino e academia que permite aos usuários criar, personalizar e acompanhar seus planos de treino. A plataforma oferece funcionalidades para registrar treinos, monitorar progresso, gerenciar rotinas de exercícios e acessar recomendações de treinos personalizados.
alem das funcionalidades para academia, como gerenciamento das informações dos alunos, matriculas e etc
## 🚀 Funcionalidades

### Funcionalidades
Cadastro de Usuários: Permite que novos usuários se registrem e criem perfis personalizados.
Criação e Personalização de Treinos: Usuários podem criar e personalizar seus planos de treino, selecionando exercícios, definindo séries, repetições e pesos.
Monitoramento de Progresso: Acompanhe o progresso dos treinos com gráficos e estatísticas.
Gestão de Rotinas: Organize os treinos em rotinas diárias, semanais ou mensais.
Recomendações Personalizadas: Sugestões de treinos baseadas nos objetivos e preferências do usuário ou pre- organizados por um personal da academia.
- 📅 **Gerenciamento de treinos**: crie, edite e acompanhe seus treinos.
- 🕒 **Histórico de atividades**: visualize seu progresso ao longo do tempo.
- 📈 **Estatísticas personalizadas**: gráficos e métricas sobre seu desempenho.
- 🧑‍💻 **Perfil do usuário**: edite informações pessoais como nome, foto de perfil e objetivos.
- 🔔 **Notificações**: lembretes para não perder os treinos.

### Tecnologias Utilizadas
Frontend: HTML, CSS, JavaScript
backend: bun, prisma, hono, postgredsql, typescript, javascript, banco de dados Neon e render para rodar o backend (antes usava php)
---

## 🛠️ Tecnologias Utilizadas

- **[React Native](https://reactnative.dev/)**: Framework para desenvolvimento de apps móveis.
- **[Expo](https://expo.dev/)**: Plataforma para construir, compilar e testar aplicativos React Native.
- **[React Navigation](https://reactnavigation.org/)**: Navegação entre telas.
- **[Expo CLI](https://docs.expo.dev/workflow/expo-cli/)**: Ferramenta para gerenciamento do projeto.
- **[Expo Go](https://expo.dev/client)**: Teste do app diretamente no dispositivo.
29 changes: 29 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"expo": {
"name": "U-gym",
"slug": "U-gym",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/favicon.png",
"output": "web-build"
}
}
}
135 changes: 0 additions & 135 deletions ask.html

This file was deleted.

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-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 bun.lockb
Binary file not shown.
Loading

0 comments on commit 0926b27

Please sign in to comment.