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
[48;5;145m [0m[48;5;188m [0m[0m | |
[48;5;145m [0m[40m [0m[48;5;145m [0m[0m | |
[40m [0m[48;5;145m [0m[0m | |
[48;5;145m [0m[40m [0m[48;5;145m [0m[40m [0m[0m | |
[40m [0m[48;5;231m [0m[40m [0m [48;5;145m [0m[40m [0m[48;5;145m [0m[0m | |
[48;5;145m [0m[40m [0m[48;5;231m [0m[40m [0m [48;5;145m [0m[40m [0m[48;5;145m [0m[48;5;188m [0m[48;5;231m [0m[48;5;188m [0m[40m [0m[48;5;145m [0m[0m | |
[48;5;145m [0m[48;5;188m [0m[48;5;231m [0m[40m [0m[48;5;145m [0m [48;5;188m [0m[48;5;145m [0m[40m [0m[48;5;145m [0m[48;5;188m [0m [48;5;145m [0m[40m [0m[48;5;145m [0m[48;5;188m [0m[48;5;231m [0m[48;5;188m [0m[48;5;145m [0m[40m [0m[48;5;145m [0m[0m | |
[40m [0m[48;5;188m [0m[48;5;231m [0m[48;5;188m [0m[48;5;145m [0m[48;5;231m |
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
{ | |
"fields": [{ | |
"placeholder": "Insert name", | |
"title": "Field 1", | |
"validation": "[A-Za-z]", | |
"defaultValue": "Tester", | |
"type": "A" | |
}, | |
{ | |
"placeholder": "Insert Surname", |
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
using System; | |
using System.Windows.Input; | |
using static System.Math; | |
namespace Test.ViewModels | |
{ | |
public class BaseCommand : ICommand | |
{ | |
public event EventHandler CanExecuteChanged; |
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
Unhandled Exception: | |
System.NullReferenceException: Object reference not set to an instance of an object | |
at Xamarin.Android.Tools.ApiXmlAdjuster.JavaApiXmlGeneratorExtensions.Save (Xamarin.Android.Tools.ApiXmlAdjuster.JavaTypeParameters typeParameters, System.Xml.XmlWriter writer, System.String indent) [0x000f0] in <bc1fe201558a400c810274a0a29f9006>:0 | |
at Xamarin.Android.Tools.ApiXmlAdjuster.JavaApiXmlGeneratorExtensions.SaveCommon (Xamarin.Android.Tools.ApiXmlAdjuster.JavaMember m, System.Xml.XmlWriter writer, System.String elementName, System.String abs, System.String native, System.String ret, System.String sync, System.String transient, System.String type, System.String typeGeneric, System.String value, System.String volat, Xamarin.Android.Tools.ApiXmlAdjuster.JavaTypeParameters typeParameters, System.Collections.Generic.IEnumerable`1[T] parameters, System.Collections.Generic.IEnumerable`1[T] exceptions, System.Nullable`1[T] extBridge, System.String jniReturn, System.Nullable`1[T] |
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
{ | |
"home": { | |
"promoCards": [ | |
{ | |
"title": "Lecker Burger", | |
"address": "Cheesy pizza 30% off and you get a second free", | |
"image": "https://d3i4yxtzktqr9n.cloudfront.net/web-eats/static/images/homepage/burger-image-550-0f1a479683.png", | |
"rigthWidget": "OPEN", | |
"leftWidget": "4.5" | |
}, |
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
{ | |
"appName": "Joe's", | |
"isPremium": false, | |
"styles": { | |
"backgroundColor": "#fefcfa", | |
"promoTitleColor": "#1b1b1b", | |
"tabBarColor": "#fefcfa", | |
"categoryTitleColor": "#fefcfa", | |
"descriptionColor": "", | |
"rightWidgetColor": "", |
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
// | |
// IdentityServerHelper.swift | |
// Example | |
// | |
// Aimore Sa on 5/6/19. | |
// | |
import Foundation | |
import AppAuth |
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
[ContentProperty(nameof(Source))] | |
public class ImageResourceExtension : IMarkupExtension | |
{ | |
public string Source { get; set; } | |
public object ProvideValue(IServiceProvider serviceProvider) | |
{ | |
if (Source == null) | |
{ | |
return null; |
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
using System; | |
using System.Drawing; | |
using System.IO; | |
using CatCatalog.iOS.Services; | |
using CatCatalog.Services; | |
using CoreGraphics; | |
using Foundation; | |
using UIKit; | |
using Xamarin.Forms; |
NewerOlder