Auto hiding Tab Bar on navigation
In Xamarin.Forms on iOS it’s not as easy as it should be to hide TabBar on navigation. In native programming there is a property HidesBottomBarWhenPushed, unfortunately it doesn’t work with Xamarin.Forms.
In Xamarin.Forms on iOS it’s not as easy as it should be to hide TabBar on navigation. In native programming there is a property HidesBottomBarWhenPushed, unfortunately it doesn’t work with Xamarin.Forms.
In this article, I will show you how to implement an attached property for Xamarin.Forms.TableView to add support for bindable sections.
Bluetooth in background mode works almost in the same way as in foreground, however there are some tricky parts. Here you can find some tips.
iOS provides a library called CoreBluetooth which allows to communicate with BLE devices. It hides many low level operations…
While creating Xamarin.Forms applications, definitely you are going to need TapGestureRecognizer often. Implementing it in XAML many times may end […]