Thanks for the great work you do to educate xamarin forms community. I use your channel every time I want implement something new. Was wondering if you could do a video on image full view, pitch and zoom.
@jfversluis3 жыл бұрын
Great to hear, thanks! I'll add that one to my (long) todo list!
@madraven373 жыл бұрын
Been using this with my tips whenever the user opens the app. Great package I should say. Thank you...👍👍👍👍
@jfversluis3 жыл бұрын
Oh like a Tip of the Day? Cool!
@techdevelopersdotnet19803 жыл бұрын
@14:18 I think it's not happy because you didn't save the files. You can see the circle on the tabs of open files. Once you build the project, it will save all files but you can save them with Ctrl + S while developing.
@jfversluis2 жыл бұрын
Oooh good spot, thanks for that! :D
@niharikasaraswat2181 Жыл бұрын
I want to bind the collection view in the popup so is it possible we can have rg.plugin.popup in center and it can expand its height according to items available in collection?
@PramodKumar-rq4xx Жыл бұрын
Is it possible to create sticky header in carouselview if yes please make a video on it.
@1990lietuva2 жыл бұрын
Long shot, but I just can't figure out how to receive data in my MVVM, the popup with entry shows up, I enter the data and click okay, now how do I get that data in my mvvm ?
@LeonoX972 жыл бұрын
Hi men thank you for the video, I have been searching how to implement a guide tutorial inside an app but I can't find how to create elements in specific position when I clicked for example in a button, You know how I can make a guide tour for my app? I really appreciate any help, thank you
@paul7909053 жыл бұрын
Thanks Gerald from Cuba
@jfversluis3 жыл бұрын
From Cuba! That is amazing! I've been there a few years ago and internet seemed hard to come by. Glad to see you here my friend!
@paul7909053 жыл бұрын
@@jfversluis Yes, it has already improved a lot. Thanks to you and James Montemagno for their learning videos. See you in Cuba one day.
@jfversluis3 жыл бұрын
@@paul790905 I hope so! Thanks for the kind words!
@ievheniiierokhin16773 жыл бұрын
Thanks for great video, you know there is a limitation to showing only single popup dialog at the moment, how would you handle multiple popup dialogs?
@jfversluis3 жыл бұрын
I didn't but that makes sense. I think the same limitation applies to the Xamarin.CommunityToolkit as well. Do you get a lot of questions about it? Personally I feel that is a problem that can be worked around easily and maybe not even something you should want to do as a developer. If you want to chat about some things, find my email on my GitHub profile and reach out :)
@ievheniiierokhin16773 жыл бұрын
@@jfversluis Not really getting questions at all :) it was just a bug trying to open multiple dialogs at the same time, for example when async await operations return trying to open new dialog :)
@keyurpatel19802 жыл бұрын
Hi Gerald, Thank you. I have OrdersList Page that show list of orders. Use can select any Order and view OrderDetailsPage. Of course, OrderDetailsPage is NOT part Shell Visual Hierarchy. I need to show Popup from the OrderDetailsPage page. I can show Rg Popup but it opens popup on the new page. I think because the Navigation stack already has OrdersListPage and OrderDetailsPage. How can I solve this issue?
@jfversluis2 жыл бұрын
Kind of impossible to say without seeing the code, sorry!
@AndresDiaz-et5mc3 жыл бұрын
I wish you talk how to set a viewModel in a popup page! Great video!
@jfversluis3 жыл бұрын
Thanks! ViewModel for a popup is no different than for a normal page :)
@keyurpatel19802 жыл бұрын
This videos shows using MVVM. kzbin.info/www/bejne/sJquo2Zqpr-rf6s
@hossamhamed3 жыл бұрын
Hi Gerald , I Can't Use This Package With Fresh MVVM , Can You make A video for that With passing data between them please
@jfversluis3 жыл бұрын
Yeah I don't think this plugin works very well with MVVM. I'll see what I can do
@davejarcher3 жыл бұрын
Many thanks for another great video Gerald! Can I request a quick video on changing your form layout due to orientation changes using MVVM?
@jfversluis3 жыл бұрын
That should have anything to do with MVVM. What do you mean by changing the layout?
@davejarcher3 жыл бұрын
@@jfversluis If you rotate a screen from portrait to landscape, you may want to layout a form differently
@keyurpatel19802 жыл бұрын
Here is one that uses MVVM. kzbin.info/www/bejne/sJquo2Zqpr-rf6s
@RaabStephan3 жыл бұрын
I'm curious how you would send binding from your viewmodel through to the popup page?
@jfversluis3 жыл бұрын
The popup page is just a page, right? SO it has a BindingContext property and should work just like any other page :) or am I not understanding you correctly?
@LuisGustavoJulio3 жыл бұрын
Have a tutorial for using it with MVVM? Thanks a lot!!
@jfversluis2 жыл бұрын
Not at the moment, sorry!
@milankrukel40763 жыл бұрын
is there a way to navigate from your popup to a new page? using modalAsync?? i want to let the popup show first and then after pressing the button navigating it to the next page
@jfversluis3 жыл бұрын
Hm I guess there would be... You can just use the navigation service for that as you normally would. Any luck yet?
@張揚-f6t3 жыл бұрын
Hello, I like this video very much. I would like to ask if it is possible to automatically pop out of the window and set the delay time? thank
@jfversluis3 жыл бұрын
Thanks! I guess so! Wrap it in a timer and have fun! :D
@SajithDulanjaya2 жыл бұрын
Is there a way to change the opacity of the overlay when the popup is displayed?
@jfversluis2 жыл бұрын
I think you should be able to set the background color. If you include alpha info in there?
@bwsince19262 жыл бұрын
My apologies if that is already covered in the video, but would this be able to be used in a ViewModel without needing to reference the page's Navigation instance (hence breaking MVVM)? Keep in mind I am not using any MVVM library and doing it all natively.
@jfversluis2 жыл бұрын
Absolutely, but not out of the box probably. You might want to write you own service to do that or use the messaging center to decouple the code
@bwsince19262 жыл бұрын
@@jfversluis Looking at the GitHub docs, it appears to suggest using an IPopupNavigation interface to handle navigation - guess that's the cleanest implementation as it allows the View to not have any relevant code at all.
@jfversluis2 жыл бұрын
@@bwsince1926 that would be my guess :)
@ajithcherrian19963 жыл бұрын
Can you please upload a tutorial for implementation of google captcha or any captcha in Xamarin forms application . It will be helpful for many of us as we don’t have enough tutorials
@jfversluis3 жыл бұрын
Why would you need a captcha on mobile? Those are for protecting you from bots filling out the forms, I would say that is not as much a problem on mobile?
@EdRawrDev58133 жыл бұрын
It would be hyper cool if you could guide us in the source code of the library so we can understand how to create a custome dialog like this, I'm assuming that they use bindable props and delegates for actions and stuff like that. I think that could me hyper useful to know, ty sir Gerald. 💜💀
@jfversluis3 жыл бұрын
Why would you want to copy the code and do it yourself if there is this library to do this for you? ;)
@anwaralomari22613 жыл бұрын
Can Rg.Plugins.Popup be used with .NET MAUI ?
@jfversluis3 жыл бұрын
Not until they make it compatible, which hasn’t been announced yet
@Ngonirow0073 жыл бұрын
Thanks for the great video. l have scenario whereby l am trying to make an appshell project to resize based on the screen size of the device which it would be installed on. Your assistance will be greatly appreciated. Keep up with the good videos.
@jfversluis3 жыл бұрын
I'm not sure what your question is :)
@Ngonirow0073 жыл бұрын
@@jfversluis I've been working on my Xamarin.Forms cross platform application. At it's current state, the UI looks perfect on my Samsung M31, however, sadly there's a problem. During the development and testing, debugging process so far I've been only using Samsung M32 as a physical device assuming (to my mistake) that Xamarin will take care of scaling everything to devices with smaller screens, however, that turned out to be completely false. The moment I attempted to run the application on an emulator with smaller screen, the UI completely broke down and looked out of place
@zeeshanbadshah53713 жыл бұрын
Thanks 👍.
@jfversluis3 жыл бұрын
No problem 👍
@loka12532 жыл бұрын
Can I dismiss the user dialog button with out user interaction??
@jfversluis2 жыл бұрын
Absolutely, just call the close method somewhere in the code
@loka12532 жыл бұрын
@@jfversluis I have used confirm async method and it dont have any close method Gerald...can you please help me!!