ZoomView.Forms 2.1.1

dotnet add package ZoomView.Forms --version 2.1.1
NuGet\Install-Package ZoomView.Forms -Version 2.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ZoomView.Forms" Version="2.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ZoomView.Forms --version 2.1.1
#r "nuget: ZoomView.Forms, 2.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ZoomView.Forms as a Cake Addin
#addin nuget:?package=ZoomView.Forms&version=2.1.1

// Install ZoomView.Forms as a Cake Tool
#tool nuget:?package=ZoomView.Forms&version=2.1.1

<br /> <p align="center"> <h1 align="center">ZoomView.Forms</h3> <p align="center"> Quickly add a zoomable wrapper to any VisualElement <br /> </p> </p>

Table of Contents

Codacy Badge nuget

About The Project

ZoomView.Forms aims to provide iOS and Android Xamarin Developer the ability to add a 'zoomview', which is basically a scrollview with the ability to pan in/out. The gesture recognition also is able to scale with your content.

Getting Started

Simply add xmlns:ZoomView="clr-namespace:ZoomView.Forms;assembly=ZoomView.Forms.Plugin" to your xaml pages then all you need is

<ZoomView:ZoomView>
  Your view here
</ZoomView:ZoomView>

Version 2.0.0

In Version 2.0.0, there is a new UserInteractionEnabled property thats part of the ZoomView. This property makes Zooming far easier within the ZoomView, however, it also disables interaction of the Content within the ZoomView.

Installation

Ensure that ZoomView.Forms is added to all projects, shared and Android/iOS

Usage

NOTE: Zooming can be interfered with by other touches being registered at the beginning of the pan gesture.

here is an example view that i created

<ZoomView:ZoomView>
		<StackLayout Margin="20,0,20,0" VerticalOptions="Center">
			<Label Text="Phone number" TextColor="WhiteSmoke" />
			<Entry
            IsSpellCheckEnabled="false"
            IsTextPredictionEnabled="false"
            Keyboard="Telephone"
            MaxLength="16"
            Text="{Binding Mobile, Mode=TwoWay}" />
			<Label
            Margin="0,15,0,0"
            Text="PIN"
            TextColor="WhiteSmoke" />
			<Entry
            IsPassword="true"
            IsSpellCheckEnabled="false"
            IsTextPredictionEnabled="false"
            Text="{Binding Password, Mode=TwoWay}" />
			<Button
            Margin="0,25,0,20"
            BackgroundColor="Green"
            BorderColor="Transparent"
            BorderWidth="1"
            Command="{Binding LoginAsync}"
            CornerRadius="25"
            FontAttributes="Bold"
            HeightRequest="50"
            IsEnabled="{Binding LoginEnabled}"
            Text="Sign In"
            TextColor="White" />
		</StackLayout>
	</ZoomView:ZoomView>

Result:

iOS Gif Example Android Gif Example

License

This project uses the MIT License

Contact

My Github, or reach me on the Xamarin Slack, or on my E-mail

Project Link: ZoomView.Forms

Acknowledgements

  • The Android code i got my main base from one of the following I will continue searching for the exact one. however was a while ago.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.0 is compatible.  netstandard1.1 was computed.  netstandard1.2 was computed.  netstandard1.3 was computed.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed.  monoandroid90 is compatible. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wp8 was computed.  wp81 was computed.  wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 was computed. 
Xamarin.iOS xamarinios was computed.  xamarinios10 is compatible. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.1 1,535 7/26/2021
2.0.0 432 2/24/2021
1.0.0 1,356 8/9/2020

AllowEasyZoomInteraction has been renamed to UserInteractionEnabled to better reflect its intention

iOS UserInteractionEnabled has been fixed and working now.