Touch Blur Image¶
The Touch Blur feature offers the developer a way to implement image blurring into their app. Allow the user the ability to blur portions of an image by merely tapping and swiping where they desire to apply the blur.
Properties¶
Source - ImageSource¶
Gets or sets the source. Default value is null.
Example Usage¶
Xaml¶
<aurora:TouchBlurImage x:Name="control" Source="http://i.onionstatic.com/avclub/5800/64/16x9/960.png" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" />
C#¶
var blur = new TouchBlurImage
{
Source = "http://i.onionstatic.com/avclub/5800/64/16x9/960.png"
};