Skip to content

Instantly share code, notes, and snippets.

View asozyurt's full-sized avatar
🎯
Focus On Target

Ahmet Selçuk Özyurt asozyurt

🎯
Focus On Target
View GitHub Profile
@asozyurt
asozyurt / SwipeEnabledImage.xaml
Created October 27, 2018 15:05
Capturing Swipe Gesture From An Image
xmlns:bhv="clr-namespace:PathToZoomImageBehavior"
...
<ContentView VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand">
<Image x:Name="imgActivePage"
Aspect="Fill"
Source="{Binding ImageUrl}">
<Image.Behaviors>
<bhv:ZoomImageBehavior IsScaleEnabled="True"
IsTranslateEnabled="True" />
/*
Ahmet Selçuk Özyurt
13.03.2017
www.asozyurt.com
*/
using System;
using UniversalistDergiRC.Repositories;
using Xamarin.Forms;
namespace UniversalistDergiRC.Core