Releases: aosoft/Xamarin.Forms.Unity
Releases · aosoft/Xamarin.Forms.Unity
v0.0.0-20171016
Changes
from commit: 04f107b (first published)
- Added new Renderer
- Editor
- Picker
- Slider
- Switch
- ScrollView
- Added new Sample Application "Fake XAML Pad"
- Simple XAML Editor application that looks like XAML Pad for WPF.
- XAML Pad UI is defined by XAML. (XamlPadPage.xaml)
- Fixed bugs at layout arrangement
Example for XAML Pad
<?xml version="1.0" encoding="utf-8" ?>
<Grid
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Slider Grid.Column="0" x:Name="slider" />
<Label Grid.Column="1" FontSize="24" TextColor="Red" VerticalTextAlignment="Center" Text="{Binding Value, Source={x:Reference slider}}" />
</Grid>