Skip to content

Commit

Permalink
Resolved the feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikasf4617 committed Dec 14, 2024
1 parent 9f2e7c7 commit 47e9138
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,25 @@ The following code example illustrate how to Customize IndicatorStrokeThickness
### XAML

```
<tabView:SfTabView IndicatorStrokeThickness ="7">
</tabView:SfTabView>
<Grid VerticalOptions="FillAndExpand">
<tabView:SfTabView IndicatorStrokeThickness="7" x:Name="tabview">
<tabView:SfTabItem Header="Dashboard" FontSize="18">
<StackLayout Padding="15">
<Label Text="View your dashboard insights!"
FontSize="16"
HorizontalOptions="Center" />
</StackLayout>
</tabView:SfTabItem>
<tabView:SfTabItem Header="Notifications" FontSize="18">
<StackLayout Padding="15">
<Label Text="Check your recent notifications."
FontSize="16"
HorizontalOptions="Center" />
</StackLayout>
</tabView:SfTabItem>
</tabView:SfTabView>
<Grid>
```

### C#
Expand Down

0 comments on commit 47e9138

Please sign in to comment.