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:async'; | |
import 'package:arkitek_app_internal/data/appConstant.dart'; | |
import 'package:arkitek_app_internal/models/PostDijitalArsiv.dart'; | |
import 'package:arkitek_app_internal/models/PostStokFis.dart'; | |
import 'package:path/path.dart'; | |
import 'package:sqflite/sqflite.dart'; | |
class DBHelper { | |
Database? _db; |
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
// ignore_for_file: avoid_print | |
import 'dart:convert'; | |
import 'dart:io'; //InternetAddress utility | |
import 'dart:async'; //For StreamController/Stream | |
import 'package:connectivity/connectivity.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:http/http.dart' as http; | |
import 'appConstant.dart'; |
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.arkitek.flutter.medisys; | |
import io.flutter.embedding.android.FlutterActivity; | |
import com.microsoft.appcenter.AppCenter; | |
import com.microsoft.appcenter.analytics.Analytics; | |
import com.microsoft.appcenter.crashes.Crashes; | |
import com.microsoft.appcenter.distribute.Distribute; | |
import android.os.Bundle; | |
public class MainActivity extends FlutterActivity { | |
@Override |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using Newtonsoft.Json; | |
namespace Types.DTO | |
{ |
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:arkitek_app_internal/firebase_options.dart'; | |
import 'package:firebase_messaging/firebase_messaging.dart'; | |
import 'package:flutter/foundation.dart'; | |
import 'package:firebase_core/firebase_core.dart'; | |
import 'package:flutter_local_notifications/flutter_local_notifications.dart'; | |
class FCMFunctions { | |
static final FCMFunctions _singleton = new FCMFunctions._internal(); |
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
declare @TableName sysname = 'MyTableName' // Replace this with your database table name. | |
declare @Result varchar(max) = 'public class ' + @TableName + ' | |
{' | |
select @Result = @Result + ' | |
public ' + ColumnType + NullableSign + ' ' + ColumnName + ' { get; set; } | |
' | |
from | |
( |
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
using System.Collections; | |
using DevExpress.XtraTreeList; | |
using DevExpress.XtraTreeList.Nodes; | |
using DevExpress.XtraTreeList.Nodes.Operations; | |
public class TreeListViewState | |
{ | |
private ArrayList expanded; | |
private ArrayList selected; | |
private object focused; |
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
loadEntries: _.debounce(function (searchInput) { | |
this.customerSearchLoading = true; | |
this.externalUserItems = []; | |
this.customers = []; | |
if (searchInput != null && searchInput.length > 2) { | |
const accountFormData = { | |
SearchText: searchInput, | |
CanikId: searchInput, | |
}; |