Skip to content

Commit

Permalink
android - feed | fix refresh view now loading (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
bricefriha authored Jan 27, 2025
1 parent 3b897e7 commit 497bff9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions App/Views/FeedsPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
Command="{Binding Path=RefreshArticles}"
Grid.Row="0"
Grid.RowSpan="2"
Margin="{OnPlatform Android='0,40,0,0', iOS='0'}"
Margin="{OnPlatform Android='0,60,0,0', iOS='0'}"
x:Name="newsRefreshView"
HorizontalOptions="Center"
RefreshColor="{StaticResource PrimaryAccent}">
Expand Down Expand Up @@ -131,7 +131,8 @@
</BoxView>
</CollectionView.Header>
<CollectionView.ItemsLayout>
<LinearItemsLayout Orientation="Vertical"/>
<LinearItemsLayout Orientation="Vertical"
ItemSpacing="1"/>
</CollectionView.ItemsLayout>
<CollectionView.EmptyView>
<ContentView x:DataType="vm:FeedsViewModel"
Expand Down Expand Up @@ -230,7 +231,8 @@
</DataTrigger>
</CollectionView.Triggers>
<CollectionView.ItemsLayout>
<LinearItemsLayout Orientation="Horizontal" ItemSpacing="10" />
<LinearItemsLayout Orientation="Horizontal"
ItemSpacing="10" />
</CollectionView.ItemsLayout>

<CollectionView.ItemTemplate>
Expand Down

0 comments on commit 497bff9

Please sign in to comment.