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
[1] │ 205 │ 'NO-FrieVenner' │ 'Misjonshuset Moss' │ 'KBS-NO-H4-S01-Illustration' │ | |
[1] │ 206 │ 'NO-FrieVenner' │ 'Misjonshuset Moss' │ 'KBS-NO-H4-S01-Illustration2' │ | |
[1] │ 207 │ 'NO-FrieVenner' │ 'Misjonshuset Moss' │ 'KBS-NO-H4-S01-Quiz' │ | |
[1] │ 208 │ 'NO-FrieVenner' │ 'Misjonshuset Moss' │ 'KBS-NO-H4-S02-Activity' │ | |
[1] │ 209 │ 'NO-FrieVenner' │ 'Misjonshuset Moss' │ 'KBS-NO-H4-S02-Illustration' │ | |
[1] │ 210 │ 'NO-FrieVenner' │ 'Misjonshuset Moss' │ 'KBS-NO-H4-S02-Illustration2' │ | |
[1] │ 211 │ 'NO-FrieVenner' │ 'Misjonshuset Moss' │ 'KBS-NO-H4-S02-Quiz' │ | |
[1] │ 212 │ 'NO-FrieVenner' │ 'Misjonshuset Moss' │ 'KBS-NO-H4-S03-Activity' │ | |
[1] │ 213 │ 'NO-FrieVenner' │ 'Misjonshuset Moss' |
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
<?php | |
$date = date('d-m-Y'); | |
$currentMonth = explode("-", $date)[1]; | |
$currentYear = explode("-", $date)[2]; | |
$response = array(); | |
for ($i = $currentMonth; $i <= 12; $i++) { | |
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
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) { |
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
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 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 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 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 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 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 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'; |
NewerOlder