Skip to content

Commit

Permalink
🚀 [Code] Updated the functionalities to .NET 8 c7
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmonettelli committed Mar 19, 2024
1 parent 3a396e7 commit dacd845
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Mitawi/Mitawi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<Nullable>enable</Nullable>

<!-- Display name -->
<ApplicationTitle>Mitawi</ApplicationTitle>
<ApplicationTitle>Mitawi Weather</ApplicationTitle>

<!-- App Identifier -->
<ApplicationId>com.danielmonettelli.mitawi</ApplicationId>
Expand Down
14 changes: 5 additions & 9 deletions Mitawi/Views/HomeDetailPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,27 @@
<Border
x:Name="topLayerLower1"
BackgroundColor="{StaticResource col_thirt}"
StrokeShape="{RoundRectangle CornerRadius='0,0,43,43'}"
StrokeThickness="0"
Style="{StaticResource vsm_orientation_topLayerLower1}">
<!--<Border.Shadow>
<Border.Shadow>
<Shadow
Brush="{StaticResource col_thirt}"
Opacity="0.93"
Radius="45"
Offset="20,20" />
</Border.Shadow>-->
<Border.StrokeShape>
<RoundRectangle CornerRadius="0,0,43,43" />
</Border.StrokeShape>
</Border.Shadow>
</Border>
<!--#endregion-->

<!--#region Top layer higher 2-->
<Border
x:Name="topLayerHigher2"
Stroke="{StaticResource col_twel}"
StrokeThickness="3"
StrokeShape="{RoundRectangle CornerRadius='0,0,45,45'}"
StrokeThickness="0"
Style="{StaticResource vsm_orientation_topLayerHigher2}">

<Border.StrokeShape>
<RoundRectangle CornerRadius="0,0,45,45" />
</Border.StrokeShape>
<Border.Background>
<LinearGradientBrush EndPoint="0,1">
<GradientStop Offset="0" Color="{StaticResource col_prim}" />
Expand Down
10 changes: 3 additions & 7 deletions Mitawi/Views/HomePage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
sk:Skeleton.Hide="True"
sk:Skeleton.IsBusy="{Binding IsAnimationSkeleton}"
BackgroundColor="{StaticResource col_thirt}"
StrokeShape="{RoundRectangle CornerRadius='0,0,43,43'}"
StrokeThickness="0"
Style="{StaticResource vsm_orientation_topLayerLower1}">
<Border.Shadow>
Expand All @@ -44,9 +45,6 @@
Radius="45"
Offset="20,20" />
</Border.Shadow>
<Border.StrokeShape>
<RoundRectangle CornerRadius="0,0,43,43" />
</Border.StrokeShape>
</Border>
<!--#endregion-->

Expand All @@ -58,11 +56,9 @@
Parameter='0.3'}"
sk:Skeleton.IsBusy="{Binding IsAnimationSkeleton}"
Stroke="{StaticResource col_twel}"
StrokeThickness="3"
StrokeShape="{RoundRectangle CornerRadius='0,0,45,45'}"
StrokeThickness="0"
Style="{StaticResource vsm_orientation_topLayerHigher2}">
<Border.StrokeShape>
<RoundRectangle CornerRadius="0,0,45,45" />
</Border.StrokeShape>
<Border.Background>
<LinearGradientBrush EndPoint="0,1">
<GradientStop Offset="0" Color="{StaticResource col_prim}" />
Expand Down

0 comments on commit dacd845

Please sign in to comment.