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
package com.example.your_app | |
import io.flutter.app.FlutterApplication | |
import io.flutter.plugin.common.PluginRegistry | |
import io.flutter.plugin.common.PluginRegistry.PluginRegistrantCallback | |
import io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService | |
class Application : FlutterApplication(), PluginRegistrantCallback { | |
override fun onCreate() { | |
super.onCreate() |
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:io'; | |
import 'package:cloud_firestore/cloud_firestore.dart'; | |
import 'package:firebase_auth/firebase_auth.dart'; | |
import 'package:firebase_messaging/firebase_messaging.dart'; | |
import 'package:flutter_local_notifications/flutter_local_notifications.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:overlay_support/overlay_support.dart'; | |
class PushNotificationService { |
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
[ | |
{ | |
"id": 1, | |
"name": "Leanne Graham", | |
"username": "Bret", | |
"email": "[email protected]", | |
"password": "9hX9rs" | |
}, | |
{ | |
"id": 2, |
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
/* | |
* Programming Quiz: What do I Wear? (3-7) | |
* | |
* Using if/else statements, create a series of logical expressions that logs the size of a t-shirt based on the measurements of: | |
* - shirtWidth | |
* - shirtLength | |
* - shirtSleeve | |
* | |
* Use the chart above to print out one of the following correct values: | |
* - S, M, L, XL, 2XL, or 3XL |
NewerOlder