sweet home
This commit is contained in:
parent
22ae5f7a61
commit
438e2f8631
28 changed files with 569 additions and 168 deletions
23
ZicMoove/ZicMoove/Views/SvgImage.cs
Normal file
23
ZicMoove/ZicMoove/Views/SvgImage.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
using Xamarin.Forms;
|
||||
|
||||
namespace ZicMoove.Views
|
||||
{
|
||||
public class SvgImage : View
|
||||
{
|
||||
public string Svg
|
||||
{
|
||||
get
|
||||
{
|
||||
return GetValue(SvgProperty) as string;
|
||||
}
|
||||
set
|
||||
{
|
||||
SetValue(SvgProperty, value);
|
||||
}
|
||||
}
|
||||
|
||||
public static readonly BindableProperty SvgProperty =
|
||||
BindableProperty.Create("Svg", typeof(string), typeof(SvgImage),
|
||||
null, BindingMode.TwoWay);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue