Skip to content

Instantly share code, notes, and snippets.

View jzeferino's full-sized avatar
:octocat:
󠀡

jzeferino jzeferino

:octocat:
󠀡
View GitHub Profile
@jzeferino
jzeferino / Logger.cs
Created February 1, 2018 09:45 — forked from ankitvijay/Logger.cs
CallerInfoExample
using System.Diagnostics;
using System.Runtime.CompilerServices;
namespace CallerInfoExample
{
public static class Logger
{
public static void Log(string message,
[CallerFilePath] string sourceFilePath = "",
[CallerLineNumber] int sourceLineNumber = 0,
@jzeferino
jzeferino / PhotoService.cs
Last active February 28, 2018 22:14
Retrieves a random photo byte[]
// =============================================
// AUTHOR : jzeferino
// PURPOSE : A simple Xamarin introduction demo
// =============================================
using System;
using System.Net.Http;
using System.Threading.Tasks;
namespace SharedCode.Service
@jzeferino
jzeferino / Animation Fade
Created October 11, 2018 16:04 — forked from aloisdeniel/Animation Fade
Xamarin.iOS view common animations
public static void Fade (this UIView view, bool isIn, double duration = 0.3, Action onFinished = null)
{
var minAlpha = (nfloat)0.0f;
var maxAlpha = (nfloat)1.0f;
view.Alpha = isIn ? minAlpha : maxAlpha;
view.Transform = CGAffineTransform.MakeIdentity ();
UIView.Animate (duration, 0, UIViewAnimationOptions.CurveEaseInOut,
() => {
view.Alpha = isIn ? maxAlpha : minAlpha;
@jzeferino
jzeferino / ViewPagerViewController.cs
Created January 11, 2019 16:05
ViewPager like ViewController
using System;
using UIKit;
using System.Collections.Generic;
using Foundation;
using System.Linq;
namespace CustomView
{
public class ViewPagerViewController<TData> : UIPageViewController, IUIPageViewControllerDelegate, IUIPageViewControllerDataSource
{

Keybase proof

I hereby claim:

  • I am jzeferino on github.
  • I am jzeferino (https://keybase.io/jzeferino) on keybase.
  • I have a public key ASBFrrd2nlSZOM6wNSDvbgH7XtQyy1uR60KB9Fyb9kvTOAo

To claim this, I am signing this object: