Andrew Herrick

Results 34 comments of Andrew Herrick

@sprudel79 it appears i have the opposite problem? I am using PKCE auth and do not want the client_secret field shown. after upgrading to 6.5.0 it now shows. is there...

@Weldryn are there any examples showing this?

I ended up using `lock` which seems to work... ``` private static object collisionLock = new object(); public void Insert(T item) { lock (collisionLock) { using (var database = new...

@Weldryn it's the only way I can prevent the iOS App from completely crashing when trying to access data. Adding `lock` fixed the crashes. If there are other examples without...

Originally I had it setup without `using `or `lock `and it was still crashing on iOS. Would love to see a basic Xamarin Forms sample app with all these best...

Never saw an official example but something like this working in my App: ``` public class DB { private string dbPath = null; private static object collisionLock = new object();...

@jeremyVignelles I do just want to display text... however how can I just include a string value considering I'm using Data Binding? I've tried something like this but it doesn't...

It doesn't work that way as it has no context of the DataType: See how `HeaderItemTemplate `and `ContentTemplate` are being set. When I just reference ` ` It doesn't have:...

Thanks for the thoughts but no, having `ToolTip `on the `TextBlock `doesn't display anything. I'm only able to get the `ToolTip `to display anything is using the `ToolTip `Property. Any...