From ca46125c8338f49e9aa66e3f01c70bef33af31dd Mon Sep 17 00:00:00 2001 From: Christian Arenas Date: Mon, 19 Jun 2017 18:48:28 +0200 Subject: [PATCH] Add campaign view template --- .../Views/Templates/CampaignTemplate.xaml | 83 +++++++++++++++++++ .../Views/Templates/CampaignTemplate.xaml.cs | 12 +++ 2 files changed, 95 insertions(+) create mode 100644 src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/Templates/CampaignTemplate.xaml create mode 100644 src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/Templates/CampaignTemplate.xaml.cs diff --git a/src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/Templates/CampaignTemplate.xaml b/src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/Templates/CampaignTemplate.xaml new file mode 100644 index 000000000..ecd376c5b --- /dev/null +++ b/src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/Templates/CampaignTemplate.xaml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/Templates/CampaignTemplate.xaml.cs b/src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/Templates/CampaignTemplate.xaml.cs new file mode 100644 index 000000000..d1660430c --- /dev/null +++ b/src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/Templates/CampaignTemplate.xaml.cs @@ -0,0 +1,12 @@ +using Xamarin.Forms; + +namespace eShopOnContainers.Core.Views.Templates +{ + public partial class CampaignTemplate : ContentView + { + public CampaignTemplate() + { + InitializeComponent(); + } + } +} \ No newline at end of file