Skip to content

Commit

Permalink
Merge pull request #2939 from syncfusion-content/UG_Hotfix
Browse files Browse the repository at this point in the history
Corrected the code error in TabView UG- Hotfix
  • Loading branch information
naveenkumar-sanjeevirayan authored Dec 31, 2024
2 parents 16f66c6 + 04ea311 commit dd4f34d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions MAUI/TabView/Visual-State-Managers.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Use the visual state manager to change the .NET MAUI tab properties based on the
<tabView:SfTabItem Header="FAVOURITES">
<tabView:SfTabItem.Content>
<Grid>
<Grid GridLayout.Row="1" VerticalOptions="End" HeightRequest="20">
<Grid Grid.Row="1" VerticalOptions="End" HeightRequest="20">
<Grid.Background>
<LinearGradientBrush EndPoint="0,1">
<GradientStop Color="Transparent" Offset="0.1" />
Expand All @@ -79,28 +79,28 @@ Use the visual state manager to change the .NET MAUI tab properties based on the
<DataTemplate>
<ViewCell>
<Grid ColumnDefinitions="48,*,48,48" Margin="10,5">
<Image GridLayout.Column="0"
<Image Grid.Column="0"
WidthRequest="35"
HeightRequest="35"
VerticalOptions="Center"
HorizontalOptions="Center"
Aspect="AspectFit"
Source="contact_image"/>
<Label GridLayout.Column="1"
<Label Grid.Column="1"
VerticalOptions="Center"
HorizontalOptions="Start"
Margin="5,0"
TextColor="#666666"
FontSize="16"
Text="{Binding}"/>
<Image GridLayout.Column="2"
<Image Grid.Column="2"
WidthRequest="35"
HeightRequest="35"
VerticalOptions="Center"
HorizontalOptions="Center"
Aspect="AspectFit"
Source="mail"/>
<Image GridLayout.Column="3"
<Image Grid.Column="3"
WidthRequest="35"
HeightRequest="35"
VerticalOptions="Center"
Expand Down

0 comments on commit dd4f34d

Please sign in to comment.