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.Diagnostics.CodeAnalysis; | |
using Microsoft.UI.Xaml; | |
using Microsoft.UI.Xaml.Controls; | |
using System; | |
using System.Diagnostics; | |
using Microsoft.UI.Xaml.Media; | |
using Microsoft.UI.Xaml.Media.Animation; | |
namespace Uno.Toolkit.UI; |
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
namespace Sharpnado.Lazy | |
{ | |
using System; | |
using System.Threading.Tasks; | |
using Prism; | |
using Sharpnado.Tabs; | |
using Sharpnado.Tasks; |
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.Threading.Tasks; | |
using Sharpnado.Tabs; | |
using Sharpnado.Tasks; | |
using Xamarin.Forms; | |
namespace Sharpnado.Presentation.CustomViews | |
{ | |
public class DelayedView<TView> : LazyView<TView> | |
where TView : View, new() |
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
namespace MyCompany | |
{ | |
public partial class App | |
{ | |
public App(IPlatformInitializer initializer) | |
: base(initializer) | |
{ | |
} | |
protected override void RegisterRequiredTypes(IContainerRegistry containerRegistry) |
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
// **************************************************************************** | |
// Copyright (c) 2017 Clovis Nicolas, fixed by JM Alfonsi | |
// https://github.com/clovisnicolas/SkiaRate | |
// **************************************************************************** | |
// This file isn't generated, but this comment is necessary to exclude it from StyleCop analysis. | |
// <auto-generated/> | |
using System; | |
using SkiaSharp; | |
using SkiaSharp.Views.Forms; |
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
{ | |
"AttributesTolerance": 2, | |
"KeepFirstAttributeOnSameLine": true, | |
"MaxAttributeCharactersPerLine": 0, | |
"MaxAttributesPerLine": 1, | |
"NewlineExemptionElements": "RadialGradientBrush, GradientStop, LinearGradientBrush, ScaleTransfom, SkewTransform, RotateTransform, TranslateTransform, Trigger, Condition, Setter", | |
"SeparateByGroups": false, | |
"AttributeIndentation": 0, | |
"AttributeIndentationStyle": 1, | |
"RemoveDesignTimeReferences": false, |
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.Collections.Generic; | |
using System.Diagnostics; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace Sharpnado.Presentation.Paging | |
{ | |
/// <summary> | |
/// Interface IInfiniteListLoader. |
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 Android.Support.V4.View; | |
using Android.Support.V4.Widget; | |
using Android.Views; | |
using Debug = System.Diagnostics.Debug; | |
namespace SillyCompany | |
{ | |
public enum AnchorBottomSheetState |
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 MvvmCross.Forms.Presenter.Core; | |
using Stago.Mhp.Instr.Pocm.Core.Views; | |
using Xamarin.Forms; | |
namespace Stago.Mhp.Instr.Pocm.Core | |
{ | |
public partial class App : MvxFormsApp | |
{ | |
public App() |
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.IO; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
using Mono.Options; | |
namespace Company.Whatever.UnitTests.Droid.Server | |
{ |
NewerOlder