priya_d
priya_d

Reputation: 403

Enlarge the Image in full view mode after tap on image in xamarin.forms

I am trying to design a view where there is image in small view when i tap on that image i want to enlarge that image in full view in xamarin forms like in whats app when we change the profile pic of application . we saw image in small section then after clicking on image it shows in full section and we got options for edit image ...which views should i used? Anybody know how i can achieve this

  <Image x:Name="image1" HeightRequest="100" WidthRequest="100"/>

Upvotes: 0

Views: 1911

Answers (1)

Jordy Dieltjens
Jordy Dieltjens

Reputation: 1538

You could click on the image and than show a custom dialog with an enlarged picture of it.( you pass the url/base64string between the dialog and main screen).

For the custom dialog part you could use: https://github.com/rotorgames/Rg.Plugins.Popup

Upvotes: 1

Related Questions