Allows xaml to bind to an expression rather than just properties.
$ dotnet add package FunctionZero.zBindz:Bind is a xaml markup extension for Xamarin.Forms that allows you to bind directly to an expression
If you want to do things like this: (note the expression is enclosed inside quotes)
<StackLayout
IsVisible="{z:Bind '(Item.Count != 0) AND (Status == \'Administrator\')'}" > ...
FunctionZero.zBind to your shared projectxmlns:z="clr-namespace:FunctionZero.zBind.z;assembly=FunctionZero.zBind"xaml page (or let Visual Studio do it for you)Head over here for source code, documentation and a sample application