Federico Maccaroni
Federico Maccaroni
Just in case here there is a blog post where you have the implementation on _Xamarin.Forms using Effects_ for Android & iOS with this library and the binding library pointed...
I think what @nmilcoff would be great but I'd have both interfaces `IMvxSetup` and `IMvxWeaverAutoSetup` so everything that the people like to register can be done in the well-known `Setup`...
I've tried with the version for linux and I couldn't make it work. I think it's necessary to build the libwkhtmltox for the different ABIs of Android using CMAKE. Particularly,...
On your project, you need to go to Native references -> Add native reference and add `libwkhtmltox.dylib` 64 bits (or 32 depending on the architecture). Then it will be referenced....
I could workaround this by toggling the visibility of the grid off and on after the collection changes. I've cloned the repository and tryiing to figure it out why the...
I'd create a DataGridColumn like this: ```xaml ``` Bind the SelectedItem to the ViewModel and in your ViewModel: ```c# public class MyViewModel : BaseViewModel { public ObservableCollection MyItems = new...
Regarding the code https://github.com/jamesmontemagno/GeolocatorPlugin/blob/master/src/Geolocator.Plugin/Apple/GeolocatorImplementation.apple.cs#L369 the minimumTime is not implemented in iOS (at least not yet). Possible workaround in [Xamarin Form: GeoLocator Issue](https://stackoverflow.com/a/52431181/6248510)
TL; DR; Set `FlowLoadingTemplate` because that is what's probably causing `NullReferenceException` A bit more explanation: I've analyzed this and come to the conclusion that it has something to do with...
I'm on XF 5.0.0.2478 and the issue still persists. Tried the workaround `SetPanGestureRecognizerShouldRecognizeSimultaneously` but it doesn't work. Do you need any more info other than the example project provided in...
First of all, thanks you all for this solution and just in case anyone faces the same issue, in order to build it in Github Actions I had to change...