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 { Component, OnInit } from '@angular/core'; | |
| import { NavController } from '@ionic/angular'; | |
| import { NavigationService } from '../navigation.service'; | |
| @Component({ | |
| selector: 'app-office', | |
| templateUrl: './office.page.html', | |
| styleUrls: ['./office.page.scss'], | |
| }) | |
| export class OfficePage implements OnInit { |
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 color="primary"> | |
| <ion-buttons slot="start"> | |
| <ion-button> | |
| <ion-icon slot="icon-only" name="menu"></ion-icon> | |
| </ion-button> | |
| </ion-buttons> | |
| <ion-title> | |
| Ionic Components - Advanced | |
| </ion-title> |
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 { StudioPage } from '../studio/studio.page'; | |
| import { ClubPage } from '../club/club.page'; | |
| import { OfficePage } from '../office/office.page'; |
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 "dart:core"; | |
| void main() { | |
| String url = "http://www.xyz.com/images/cat_53x53xyz.jpg"; | |
| //You can replace xyz with any string and it will still work | |
| String newURL = changeSizeInUrl(url); | |
| } |
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 { RouterModule, RouteReuseStrategy, Routes } from '@angular/router'; | |
| import { IonicModule, IonicRouteStrategy } from '@ionic/angular'; | |
| import { SplashScreen } from '@ionic-native/splash-screen/ngx'; | |
| import { StatusBar } from '@ionic-native/status-bar/ngx'; | |
| import { AppComponent } from './app.component'; | |
| import { AppRoutingModule } from './app-routing.module'; |
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
| \!h import { IonicStorageModule } from '@ionic/storage'; | |
| @NgModule({ | |
| declarations: [ | |
| // ... | |
| ], | |
| imports: [ | |
| BrowserModule, | |
| IonicModule.forRoot(MyApp), | |
| ], |
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
| \!h import { IonicStorageModule } from '@ionic/storage'; | |
| @NgModule({ | |
| declarations: [ | |
| // ... | |
| ], | |
| imports: [ | |
| BrowserModule, | |
| IonicModule.forRoot(MyApp), | |
| \!h IonicStorageModule.forRoot() |
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 { Component } from '@angular/core' | |
| import { Storage } from '@ionic/storage' | |
| @Component({ | |
| selector: 'app-home', | |
| templateUrl: 'home.page.html', | |
| styleUrls: ['home.page.scss'], | |
| }) | |
| export class HomePage { | |
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 { Component } from '@angular/core' | |
| import { Storage } from '@ionic/storage' | |
| @Component({ | |
| selector: 'app-home', | |
| templateUrl: 'home.page.html', | |
| styleUrls: ['home.page.scss'], | |
| }) | |
| export class HomePage { | |
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 'package:flutter/material.dart'; | |
| import 'package:jesuskids/models/message.dart'; | |
| import 'package:jesuskids/utilities/utilities.dart'; | |
| class ChatMessageLeft extends StatelessWidget { | |
| ChatMessageLeft({this.message, this.animationController}); | |
| final Message message; | |
| final AnimationController animationController; | |
| @override | |
| Widget build(BuildContext context) { |