Brandon Butler
Brandon Butler
We ran into this issue and discovered that the ble device needs to report the service id in the advertisement record. We had a device that had the expected service,...
I had this issue on Android and ended up writing a extension method to handle it. ```C# public static string LatestName(this IDevice device) { if (device.AdvertisementRecords != null) { foreach...
I'm struggling to get the touch behavior to work in a DataTemplate. My workaround is to use the TouchBehavior for my animation, and use a Gesture Recognizer for the command...
My TouchBehavior in a CollectionView Data template doesn't seem to be performing any animations either. ``` ... ``` For example the shadowFrame in the example above does not change its...
@phunkeler This is my current workaround. Just add a `TapGestureRecognizer` with the command instead of using the TouchBehavior. ```C# ```
I've found that there's a lot of documentation that should be updated...
@Cheesebaron You are even more right. I've been seriously considering it too 😉 At least with the parts that I understand. There's still a lot about this framework that is...
This one bit me today ```C# ``` I'm literally binding the command to a command property in the datasource
I worked around the issue by adding a static method that returns the top page. Where the top page is either the app's current page or the mopup services last...
@tobyfirth Did you ever get time to implement this?