Sumit Gupta

Results 14 comments of Sumit Gupta

well $img was coming as `undefined` so it will again generate the undefined error with that statement.

I just notice in `Plugin.LocalNotification/Sample/NuGet/LocalNotification.Sample/App.xaml.cs ` the `OnResume` and `OnSleep` function are rewritten (i.e. overridden). When you override these function you need to call `base.OnResume()` and `base.OnSleep()` to maintain the...

conceptually if function get compiled in final version it will overwrite the previous version. so even empty function will overwrite previous method. If you don't need those method just remove...

I am not sure why it didn't work for you. I see the sample app are old and using older v8 code in `Nuget` Folder. But to help you further,...

Is there any alternative available? We are suddenly getting E0007 on our 9 yr old account.

Yup it is happen on php 8.0.7, on Windows 10 .

https://marketplace.visualstudio.com/items?itemName=zobo.php-intellisense This will work.

I have similar issue (not sure if it is same). But here is what I found. I am still in development environment and notice this issue. * Start the application,...

I sort it out for me by adding ``` protected override void OnSleep() { ... //Your code to save some setting manually goes before OnSleep. base.OnSleep(); //This will save the...