This file contains hidden or 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
import { Ionicons, MaterialCommunityIcons, MaterialIcons } from '@expo/vector-icons'; | |
import React, { useEffect, useRef, useState } from 'react'; | |
import { Alert, Image, Keyboard, Pressable, SafeAreaView, StyleSheet, Text, TouchableOpacity, View } from 'react-native'; | |
import SDButton from '../components/ui/sdbuttons'; | |
import Input from '../boilerplate/input'; | |
import { useTheme } from '../boilerplate/theme'; | |
import { useAppContext } from '../boilerplate/store'; | |
import { sendPasswordResetEmail, signInWithEmailAndPassword } from 'firebase/auth'; | |
import { doc, getDoc, updateDoc } from 'firebase/firestore'; | |
import { auth, firestore, logout } from '../boilerplate/firebase'; |
This file contains hidden or 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
import { NgModule } from '@angular/core'; | |
import { BrowserModule } from '@angular/platform-browser'; | |
import { RouteReuseStrategy } from '@angular/router'; | |
import { IonicModule, IonicRouteStrategy } from '@ionic/angular'; | |
import { AppComponent } from './app.component'; | |
import { AppRoutingModule } from './app-routing.module'; | |
import { initializeApp, provideFirebaseApp } from '@angular/fire/app'; | |
import { environment } from '../environments/environment'; |
This file contains hidden or 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
<ion-header> | |
<ion-toolbar> | |
<ion-title> | |
Ionic App One | |
</ion-title> | |
</ion-toolbar> | |
</ion-header> | |
<ion-content> | |
This file contains hidden or 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
import { NgModule } from '@angular/core'; | |
import { CommonModule } from '@angular/common'; | |
import { IonicModule } from '@ionic/angular'; | |
import { FormsModule } from '@angular/forms'; | |
import { RouterModule } from '@angular/router'; | |
import { HomePage } from './home.page'; | |
import { AcademyLibModule } from 'academy-lib'; | |
@NgModule({ |
This file contains hidden or 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
Show hidden characters
{ | |
"compileOnSave": false, | |
"compilerOptions": { | |
"baseUrl": "./", | |
"outDir": "./dist/out-tsc", | |
"sourceMap": true, | |
"declaration": false, | |
"module": "esnext", | |
"moduleResolution": "node", | |
"emitDecoratorMetadata": true, |
This file contains hidden or 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
{ | |
"projects": { | |
"appOne": { | |
"name": "appOne", | |
"integrations": { | |
"cordova": {} | |
}, | |
"type": "angular", | |
"root": "projects/appOne" | |
}, |
This file contains hidden or 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
{ | |
"projects": { | |
"appOne": { | |
"name": "appOne", | |
"integrations": {}, | |
"type": "angular", | |
"root": "projects/appOne" | |
}, | |
"appTwo": { | |
"name": "app", |
This file contains hidden or 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
{ | |
"$schema": "./node_modules/@angular-devkit/core/src/workspace/workspace-schema.json", | |
"version": 1, | |
"defaultProject": "appOne", | |
"newProjectRoot": "projects", | |
"projects": { | |
"appOne": { | |
"root": "", | |
"sourceRoot": "src", | |
"projectType": "application", |
This file contains hidden or 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
cd ./projects | |
# Create our Ionic Apps | |
ionic start appOne blank | |
ionic start appTwo tabs |
This file contains hidden or 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
{ | |
"projects": {} | |
} |
NewerOlder