diff --git a/samples/SwipeCardView.Sample.sln b/samples/SwipeCardView.Sample.sln
index 7765457..48dc396 100644
--- a/samples/SwipeCardView.Sample.sln
+++ b/samples/SwipeCardView.Sample.sln
@@ -3,20 +3,30 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SwipeCardView.Sample", "SwipeCardView.Sample\SwipeCardView.Sample.csproj", "{FFFB25DF-5B56-456D-A43D-21A12DEB266B}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SwipeCardView.Sample", "SwipeCardView.Sample\SwipeCardView.Sample.csproj", "{FFFB25DF-5B56-456D-A43D-21A12DEB266B}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Plugin.Maui.SwipeCardView", "..\src\Plugin.Maui.SwipeCardView\Plugin.Maui.SwipeCardView.csproj", "{02605263-CEB5-4A54-BFF1-1ABD22AEACBE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FFFB25DF-5B56-456D-A43D-21A12DEB266B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FFFB25DF-5B56-456D-A43D-21A12DEB266B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {FFFB25DF-5B56-456D-A43D-21A12DEB266B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{FFFB25DF-5B56-456D-A43D-21A12DEB266B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FFFB25DF-5B56-456D-A43D-21A12DEB266B}.Release|Any CPU.Build.0 = Release|Any CPU
+ {02605263-CEB5-4A54-BFF1-1ABD22AEACBE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {02605263-CEB5-4A54-BFF1-1ABD22AEACBE}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {02605263-CEB5-4A54-BFF1-1ABD22AEACBE}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {02605263-CEB5-4A54-BFF1-1ABD22AEACBE}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {EC90BD18-ECDF-4F96-AFEF-248CF30B4FB7}
EndGlobalSection
EndGlobal
diff --git a/samples/SwipeCardView.Sample/MainPage.xaml b/samples/SwipeCardView.Sample/MainPage.xaml
index ea92a5e..6da451e 100644
--- a/samples/SwipeCardView.Sample/MainPage.xaml
+++ b/samples/SwipeCardView.Sample/MainPage.xaml
@@ -2,7 +2,9 @@
+ Shell.BackgroundColor="{x:StaticResource Primary}"
+ Shell.TitleColor="{x:StaticResource White}"
+ Title="SwipeCardView Samples">
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
+ protected void RaisePropertyChanged([CallerMemberName] string? name = null) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
}
\ No newline at end of file
diff --git a/samples/SwipeCardView.Sample/Views/ColorsPage.xaml b/samples/SwipeCardView.Sample/Views/ColorsPage.xaml
index a8aa381..b6e49d4 100644
--- a/samples/SwipeCardView.Sample/Views/ColorsPage.xaml
+++ b/samples/SwipeCardView.Sample/Views/ColorsPage.xaml
@@ -3,8 +3,10 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:swipeCardView="clr-namespace:Plugin.Maui.SwipeCardView;assembly=Plugin.Maui.SwipeCardView"
x:Class="SwipeCardView.Sample.Views.ColorsPage"
+ Shell.BackgroundColor="{x:StaticResource Primary}"
+ Shell.TitleColor="{x:StaticResource White}"
Title="Colors Page">
-
+
-
+
\ No newline at end of file
diff --git a/samples/SwipeCardView.Sample/Views/CustomizablePage.xaml b/samples/SwipeCardView.Sample/Views/CustomizablePage.xaml
index b107bcb..0652bd4 100644
--- a/samples/SwipeCardView.Sample/Views/CustomizablePage.xaml
+++ b/samples/SwipeCardView.Sample/Views/CustomizablePage.xaml
@@ -3,6 +3,8 @@
xmlns:swipeCardView="clr-namespace:Plugin.Maui.SwipeCardView;assembly=Plugin.Maui.SwipeCardView"
xmlns:local="clr-namespace:SwipeCardView.Sample"
x:Class="SwipeCardView.Sample.Views.CustomizablePage"
+ Shell.BackgroundColor="{x:StaticResource Primary}"
+ Shell.TitleColor="{x:StaticResource White}"
Title="Customizable Page">
diff --git a/samples/SwipeCardView.Sample/Views/SimplePage.xaml b/samples/SwipeCardView.Sample/Views/SimplePage.xaml
index ab8935d..e89c185 100644
--- a/samples/SwipeCardView.Sample/Views/SimplePage.xaml
+++ b/samples/SwipeCardView.Sample/Views/SimplePage.xaml
@@ -2,29 +2,29 @@
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
+
+
diff --git a/samples/SwipeCardView.Sample/Views/TinderPage.xaml b/samples/SwipeCardView.Sample/Views/TinderPage.xaml
index db8aa6b..4738618 100644
--- a/samples/SwipeCardView.Sample/Views/TinderPage.xaml
+++ b/samples/SwipeCardView.Sample/Views/TinderPage.xaml
@@ -4,8 +4,10 @@
xmlns:swipeCardView="clr-namespace:Plugin.Maui.SwipeCardView;assembly=Plugin.Maui.SwipeCardView"
x:Class="SwipeCardView.Sample.Views.TinderPage"
BackgroundColor="#EEE"
+ Shell.BackgroundColor="{x:StaticResource Primary}"
+ Shell.TitleColor="{x:StaticResource White}"
Title ="Tinder">
-
+
-
+
@@ -62,7 +64,7 @@
-
+
-
+
\ No newline at end of file