Skip to content

Commit

Permalink
Merge pull request #29 from roubachof/master
Browse files Browse the repository at this point in the history
add jean-marie alfonsi as author and run away! as new UI snippet
  • Loading branch information
sthewissen committed Jul 18, 2019
2 parents 0b54dd9 + 0274444 commit a5964a5
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Snppts/Authors/JeanMarieAlfonsi.cs
@@ -0,0 +1,15 @@
using System;
using Snppts.Infrastructure;

namespace Snppts.Authors
{
public class JeanMarieAlfonsi : IAmAnAuthor
{
public string FirstName => "Jean-Marie";
public string LastName => "Alfonsi";
public Uri Website => new Uri("https://www.sharpnado.com");
public string TwitterHandle => "piskariov";
public string GitHubHandle => "roubachof";
public string GravatarHash => "793803979d0ef8d047e83c86fd2ad67f";
}
}
36 changes: 36 additions & 0 deletions src/Snppts/Snippets/RunAway!.cs
@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using Snppts.Authors;
using Snppts.Infrastructure;

namespace Snppts.Snippets
{
public class RunAway : IAmASnippet
{
public string Slug => "RunAway!";
public string Title => "RunAway!";
public string GithubRepoName => "roubachof/SkiaSharpnado";
public bool ContainsAndroidSample => true;
public bool ContainsiOSSample => true;
public bool ContainsUWPSample => true;

public string Description => "Something like a Xamarin.Forms Runtastic-like training sessions viewer, displaying gradient lines on top of Google Maps with SkiaSharp";

public IAmAnAuthor AuthorInfo => new JeanMarieAlfonsi();

public IEnumerable<Uri> ImageUris => new List<Uri>
{
new Uri("https://raw.githubusercontent.com/roubachof/SkiaSharpnado/master/__Docs__/activity_page_android_4dp.png"),
new Uri("https://raw.githubusercontent.com/roubachof/SkiaSharpnado/master/__Docs__/activity_header_page_ios.png"),
new Uri("https://raw.githubusercontent.com/roubachof/SkiaSharpnado/master/__Docs__/activity_page_ios_4dp.png"),
new Uri("https://raw.githubusercontent.com/roubachof/SkiaSharpnado/master/__Docs__/glenn_thick.png")
};

public IList<Category> Categories => new List<Category>
{
Category.MAPS, Category.CARDS
};

public Uri ExternalUri => new Uri("https://www.sharpnado.com/run-away-app/");
}
}

0 comments on commit a5964a5

Please sign in to comment.