FrancoisM

Results 7 issues of FrancoisM

The following line led to a clonflict in my app. https://github.com/akavache/Akavache/blob/883b2ae8ac492866b1a72113c833269b7a6845e8/src/Akavache.Core/Platforms/uap10.0/WinRTShims.cs#L13 Ambiguous invocation: Windows.Storage.Streams.IRandomAccessStream AsRandomAccessStream(this System.IO.Stream) (in class MicrosoftStreamExtensions) Windows.Storage.Streams.IRandomAccessStream AsRandomAccessStream(this System.IO.Stream) (in class WindowsRuntimeStreamExtensions)

I just cloned the project and it doesn't compile due to targeting mismatches.

The entry doesn't scroll up when the keyboard appears (at least on ios simulator). I guess the view should be within a sroll view.

Since I moved my custom renderers into my app library which I multi target for `.netstandard20` as well as `monoandroid81` and `xamarinios10,` my custom controls don't show up. This is...

For anyone interested: ``` public static class ResultExtensions { public static bool IsFailure(this IEnumerable source) => source.Any(result => result.IsFailure); public static bool IsSuccess(this IEnumerable source) => !source.IsFailure(); public static Result...

This works: ``` private IObservable MyMethod() => MyApi .DoSomething() .Select(result => ResultExtensions .OnSuccess(result, () => { _myVariable = result.Value; }) .OnSuccess(() => NavigationService.GoBack()) .OnFailure(async error => await NavigationService.DisplayAlert(error)) .OnBoth(_ =>...

this alone in a page works: ``` ``` but put into a `TabViewItem` and the `TextBoxRegex` stops working: ``` ``` with: ``` public class ValidationConverter : IValueConverter { public object...