Skip to content

Commit

Permalink
About page | fix crashes on the Title view after compiling with AOT
Browse files Browse the repository at this point in the history
  • Loading branch information
bricefriha committed Jan 15, 2025
1 parent a574191 commit 54b9b17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
4 changes: 0 additions & 4 deletions App/ViewModels/NewsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,6 @@ public Command SaveSearch

App.SqLiteConn.Delete(feedTarget);
Feeds.Remove(feedTarget);




});
}
}
Expand Down
13 changes: 4 additions & 9 deletions App/Views/BookmarkPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,8 @@
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="auto"/>
<ColumnDefinition >
<ColumnDefinition.Width>
<OnPlatform>
<On Platform="iOS" Value="{StaticResource iOSTitleMargin}" />
<On Platform="Android" Value="{StaticResource AndroidTitleMargin}" />
</OnPlatform>
</ColumnDefinition.Width>
</ColumnDefinition>
<ColumnDefinition Width="{OnPlatform Android='1.9*',
iOS='2*'}"/>

</Grid.ColumnDefinitions>

Expand All @@ -28,7 +22,8 @@
FontSize="30"
VerticalOptions="Center"
TextColor="{StaticResource FontColor}"
Margin="{OnPlatform Android='0,0,40,5', iOS='30,0,40,5'}"
Margin="{OnPlatform Android='0,0,40,5',
iOS='30,0,40,5'}"
FontFamily="P-Bold"/>
</Grid>

Expand Down

0 comments on commit 54b9b17

Please sign in to comment.