-
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.
- Loading branch information
elto borges
authored and
elto borges
committed
Jan 19, 2025
1 parent
c31c29b
commit 0926b27
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.
There are no files selected for viewing
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,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. |
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,3 @@ | ||
{ | ||
"devices": [] | ||
} |
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,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: { | ||
|
||
}, | ||
}); |
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,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. |
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,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" | ||
} | ||
} | ||
} |
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.