Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Update TabView.shared.cs (#1926)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncunning committed May 1, 2023
1 parent 6167ed4 commit 204bbe2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public TabView()
tabStripContentContainer = new Grid
{
BackgroundColor = Color.Transparent,
Children = { tabStripIndicator, tabStripContent },
Children = { tabStripContent, tabStripIndicator },
HorizontalOptions = LayoutOptions.FillAndExpand,
VerticalOptions = LayoutOptions.Start
};
Expand Down Expand Up @@ -1099,4 +1099,4 @@ internal virtual void OnTabViewScrolled(ItemsViewScrolledEventArgs e)
handler?.Invoke(this, e);
}
}
}
}

0 comments on commit 204bbe2

Please sign in to comment.