Skip to content

Commit

Permalink
fluxo básico
Browse files Browse the repository at this point in the history
  • Loading branch information
werepa committed Jun 25, 2024
1 parent 0dfa94b commit cae0e36
Show file tree
Hide file tree
Showing 11 changed files with 480 additions and 74 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ log.txt
/www
/platforms
/plugins
/android
/ios

# Compiled output
/dist
Expand Down
18 changes: 18 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/router": "^18.0.0",
"@capacitor/android": "6.1.0",
"@capacitor/app": "6.0.0",
"@capacitor/core": "6.1.0",
"@capacitor/haptics": "6.0.0",
"@capacitor/ios": "6.1.0",
"@capacitor/keyboard": "6.0.1",
"@capacitor/status-bar": "6.0.0",
"@ionic/angular": "^8.0.0",
Expand Down
14 changes: 7 additions & 7 deletions src/app/app.routes.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Routes } from '@angular/router';
import { Routes } from "@angular/router"

export const routes: Routes = [
{
path: 'home',
loadComponent: () => import('./home/home.page').then((m) => m.HomePage),
path: "",
redirectTo: "main",
pathMatch: "full",
},
{
path: '',
redirectTo: 'home',
pathMatch: 'full',
path: "main",
loadComponent: () => import("./main/main.page").then((m) => m.MainPage),
},
];
]
20 changes: 0 additions & 20 deletions src/app/home/home.page.html

This file was deleted.

27 changes: 0 additions & 27 deletions src/app/home/home.page.scss

This file was deleted.

13 changes: 0 additions & 13 deletions src/app/home/home.page.ts

This file was deleted.

Loading

0 comments on commit cae0e36

Please sign in to comment.