Skip to content

Instantly share code, notes, and snippets.

View RobertApikyan's full-sized avatar

Robert Apikyan RobertApikyan

  • V-Mobile
  • Armenia, Yerevan
View GitHub Profile
submit,
feedback,
document_open,
document_reload,
back,
link,
info_panel_mute,
info,
capture_mode,
capture_photo,
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"),
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);
class AppButton extends StatefulWidget {
const AppButton({
required this.text,
required this.styleBundle,
super.key,
this.onTap,
this.isDisabled = false,
});
final String text;
75823a487f61823a430201017f60823a3ba10e81010282010087020101880200085f2e823a26464143003031300000003a26000100003a1800000000000000000000000000000000010100f001400000000000000000000c6a5020200d0a870a00000014667479706a703220000000006a7032200000002d6a703268000000166968647200000140000000f00003070700000000000f636f6c7201000000000010000000006a703263ff4fff51002f0000000000f0000001400000000000000000000000f00000014000000000000000000003070101070101070101ff640023000143726561746f723a204a61735065722056657273696f6e20312e3930302e31ff52000c00000001010504040000ff5c0023426f106ee86ee86eb866fc66fc66e05f4c5f4c5f624803480348454fd24fd24f60ff5d002401426f106ee86ee86eb866fc66fc66e05f4c5f4c5f624803480348454fd24fd24f60ff5d002402426f106ee86ee86eb866fc66fc66e05f4c5f4c5f624803480348454fd24fd24f60ff90000a0000000038ca0001ff93cfecfc03b39d9d98961f6dd71757ec402636de092c34e5da8bb9bacc68c2e1155f60be8b2db919919eb29170fc9d058f225d3f47ac9a823504cc49e3c59b4ef2dd76fdcd49ceff2845b721eec2d521bf4e389acb1bfdc9d3c721fd27bd7ef4dc1ceebf2177bf7f307ba0ec52193daaf761ca
This file has been truncated, but you can view the full file.
{
"customer": {
"firstName": "Hans",
"surname": "Tester",
"street": "Hausstr.",
"nameAtBirth": "Tester",
"houseNumber": "32",
"postalCode": "55555",
"placeOfResidence": "Berlin",
"nationality": "D",
This file has been truncated, but you can view the full file.
{
"customer": {
"firstName": "Hans",
"surname": "Tester",
"street": "Hausstr.",
"nameAtBirth": "Tester",
"houseNumber": "32",
"postalCode": "55555",
"placeOfResidence": "Berlin",
"nationality": "D",
{
"customer": {
"firstName": "Hans",
"surname": "Tester",
"street": "Hausstr.",
"nameAtBirth": "Tester",
"houseNumber": "32",
"postalCode": "55555",
"placeOfResidence": "Berlin",
"nationality": "D",
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'dart:io';
import 'package:camera/camera.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
// A Simple Encryption/Decryption Algorithm
object CCED01_ASCII {
// text to encrypt
// rotationStep is a key for encryption
fun encrypt(text: String, rotationStep:Int): String {
val startIndex = 32 // Start of the printable characters of the ASCII table
val endIndex = 126 // End of the printable characters of the ASCII table
val length = endIndex - startIndex