View PlatformMethodHandler.swift
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
// | |
// PlatformMethodHandler.swift | |
// Runner | |
// | |
// Created by Tigran Kirakosyan on 11/23/20. | |
// Copyright © 2020 The Chromium Authors. All rights reserved. | |
// | |
import Flutter | |
import MSAL |
View Podfile
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
# Uncomment this line to define a global platform for your project | |
platform :ios, '11.0' | |
# CocoaPods analytics sends network stats synchronously affecting flutter build latency. | |
ENV['COCOAPODS_DISABLE_STATS'] = 'true' | |
project 'Runner', { | |
'Debug' => :debug, | |
'Profile' => :release, | |
'Release' => :release, |
View pubspec.yaml
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
name: raiser | |
description: A new Flutter application. | |
publish_to: none | |
version: 2.0.4+321 | |
# !!! TO BUILD RELEASE VERSION RUN | |
# flutter build {apk,ios} --release -t lib/run/{Dev, Prod, Stage}.dart --flavor {dev,prod,stage} | |
# Since the app stizzzzzll uses flies with no null safety, the --no-sound-null-safety argument needs to be added | |
# Example - fvm flutter build apk --release -t lib/run/Dev.dart --flavor dev --no-sound-null-safety | |
# Example - fvm flutter build apk --release -t lib/run/Prod.dart --flavor prod --no-sound-null-safety |
View gist:d57c6c556f66f895cf94b4de53adb024
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
submit, | |
feedback, | |
document_open, | |
document_reload, | |
back, | |
link, | |
info_panel_mute, | |
info, | |
capture_mode, | |
capture_photo, |
View gist:ebc23e7a7bf0eb4bdad03b780078614a
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
file_viewed('FILE_VIEWED'), | |
auto_fill_tan("AUTO_FILL_TAN"), | |
face_scan_canceled("FACE_SCAN_CANCELED"), | |
automatic_document_capture("AUTOMATIC_DOCUMENT_CAPTURE"), | |
automatic_document_capture_failure("AUTOMATIC_DOCUMENT_CAPTURE_FAILURE"), | |
moved_to_foreground("MOVED_TO_FOREGROUND"), | |
moved_to_background("MOVED_TO_BACKGROUND"), | |
purpose_selection("PURPOSE_SELECTION"), | |
dialog_shown("DIALOG_SHOWN"), | |
toast_shown("TOAST_SHOWN"), |
View content_fade.dart
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:qundo/app/app_colors.dart'; | |
class ContentFade extends StatelessWidget { | |
const ContentFade( | |
{required this.child, | |
Key? key, | |
this.fadeStart = true, | |
this.fadeEnd = true}) | |
: super(key: key); |
View gist:8fd63882f2893624acb78e3a651bc7cc
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
75823a487f61823a430201017f60823a3ba10e81010282010087020101880200085f2e823a26464143003031300000003a26000100003a1800000000000000000000000000000000010100f001400000000000000000000c6a5020200d0a870a00000014667479706a703220000000006a7032200000002d6a703268000000166968647200000140000000f00003070700000000000f636f6c7201000000000010000000006a703263ff4fff51002f0000000000f0000001400000000000000000000000f00000014000000000000000000003070101070101070101ff640023000143726561746f723a204a61735065722056657273696f6e20312e3930302e31ff52000c00000001010504040000ff5c0023426f106ee86ee86eb866fc66fc66e05f4c5f4c5f624803480348454fd24fd24f60ff5d002401426f106ee86ee86eb866fc66fc66e05f4c5f4c5f624803480348454fd24fd24f60ff5d002402426f106ee86ee86eb866fc66fc66e05f4c5f4c5f624803480348454fd24fd24f60ff90000a0000000038ca0001ff93cfecfc03b39d9d98961f6dd71757ec402636de092c34e5da8bb9bacc68c2e1155f60be8b2db919919eb29170fc9d058f225d3f47ac9a823504cc49e3c59b4ef2dd76fdcd49ceff2845b721eec2d521bf4e389acb1bfdc9d3c721fd27bd7ef4dc1ceebf2177bf7f307ba0ec52193daaf761ca |
View gist:0743e72325763a2165f757481489a00d
This file has been truncated, but you can view the full file.
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
{ | |
"customer": { | |
"firstName": "Hans", | |
"surname": "Tester", | |
"street": "Hausstr.", | |
"nameAtBirth": "Tester", | |
"houseNumber": "32", | |
"postalCode": "55555", | |
"placeOfResidence": "Berlin", | |
"nationality": "D", |
View gist:aa8f5bd2c8de10855a8ab7e7d3c63414
This file has been truncated, but you can view the full file.
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
{ | |
"customer": { | |
"firstName": "Hans", | |
"surname": "Tester", | |
"street": "Hausstr.", | |
"nameAtBirth": "Tester", | |
"houseNumber": "32", | |
"postalCode": "55555", | |
"placeOfResidence": "Berlin", | |
"nationality": "D", |
NewerOlder