- Build Settings Screen
- Add Styles
- Add Dynamic Fonts
- Custom Fonts
- Gradient Backgrounds
- NGraphics Image Loading
- Tinted Images
- Search Screen
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
<configuration> | |
<packageSources> | |
<clear /> | |
<add key="github" value="https://nuget.pkg.github.com/Clancey/index.json" /> | |
</packageSources> | |
<packageSourceCredentials> | |
<github> | |
<add key="Username" value="GithubNugetAccess" /> | |
<add key="ClearTextPassword" value="a31f402ea9872240db9f947422c210177e2bb017" /> | |
</github> |
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.ObjectModel; | |
using System.Linq; | |
using System.Collections.Specialized; | |
using System.Timers; | |
namespace System.Collections.Generic { | |
public class BulkUpdateObservableCollection<T> : ObservableCollection<T> { | |
bool isBulkUpdating; | |
protected override void OnCollectionChanged (NotifyCollectionChangedEventArgs e) |
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
public class Links | |
{ | |
} | |
public class Chatters | |
{ | |
[JsonProperty("broadcaster")] | |
public IList<string> Broadcaster { get; set; } |
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
<!DOCTYPE NETSCAPE-Bookmark-file-1> | |
<!-- This is an automatically generated file. | |
It will be read and overwritten. | |
DO NOT EDIT! --> | |
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
<TITLE>Bookmarks</TITLE> | |
<H1>Bookmarks</H1> | |
<DL><p> | |
<DL><p> | |
<DT><H3 ADD_DATE="1513205511" LAST_MODIFIED="1555649077">ZombieGame</H3> |
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 Xamarin.Forms; | |
using Xamarin.Forms.Internals; | |
namespace gMusic.Views | |
{ | |
public class OverflowLabel : ContentView, IFontElement | |
{ | |
public static readonly BindableProperty HorizontalTextAlignmentProperty = | |
BindableProperty.Create(nameof(HorizontalTextAlignment), typeof(TextAlignment), typeof(OverflowLabel), TextAlignment.Start, |
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
at Foundation.NSObject.get_SuperHandle () [0x00012] in /Library/Frameworks/Xamarin.iOS.framework/Versions/12.8.0.0/src/Xamarin.iOS/Foundation/NSObject2.cs:449 | |
at UIKit.UITableViewCell.get_TextLabel () [0x0002a] in /Library/Frameworks/Xamarin.iOS.framework/Versions/12.8.0.0/src/Xamarin.iOS/UIKit/UITableViewCell.g.cs:980 | |
at Xamarin.Forms.Platform.iOS.TextCellRenderer.HandleCellPropertyChanged (System.Object sender, System.ComponentModel.PropertyChangedEventArgs args) [0x0002a] in <8c4db0cea1de49bb871147a140eaac39>:0 | |
at Xamarin.Forms.Platform.iOS.CellTableViewCell.HandlePropertyChanged (System.Object sender, System.ComponentModel.PropertyChangedEventArgs e) [0x0000a] in <8c4db0cea1de49bb871147a140eaac39>:0 | |
at (wrapper delegate-invoke) <Module>.invoke_void_object_PropertyChangedEventArgs(object,System.ComponentModel.PropertyChangedEventArgs) | |
at Xamarin.Forms.BindableObject.OnPropertyChanged (System.String propertyName) [0x00000] in D:\a\1\s\Xamarin.Forms.Core\BindableObject.cs:173 | |
at Xamarin.Fo |
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.Linq; | |
namespace Xamarin.Forms { | |
public class VisualElementStyle : StyleHelper { | |
public VisualElementStyle () { Type = typeof (VisualElement); } | |
public Xamarin.Forms.INavigation Navigation { | |
get => GetValue<Xamarin.Forms.INavigation> (VisualElement.NavigationProperty); |
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.Net.Http; | |
namespace SimpleAuth.Providers { | |
public class StravaApi : OAuthApi { | |
public StravaApi (string identifier, string clientId, string clientSecret, string redirect, HttpMessageHandler handler) : | |
base (identifier, clientId, clientSecret, "https://www.strava.com/oauth/token", "https://www.strava.com/oauth/mobile/authorize", redirect, handler) | |
{ | |
BaseAddress = new Uri ("https://www.strava.com/api/v3/"); | |
} | |
} |
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:simple_auth/simple_auth.dart'; | |
import "package:http/http.dart" as http; | |
class InstagramApi extends OAuthApi { | |
InstagramApi(String identifier, String clientId, String clientSecret, | |
String redirectUrl, | |
{List<String> scopes, | |
http.Client client, | |
Converter converter, | |
AuthStorage authStorage}) |