|
| 1 | +<?xml version="1.0" encoding="utf-8" ?> |
| 2 | +<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" |
| 3 | + xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" |
| 4 | + x:Class="TabView.MainPage" |
| 5 | + xmlns:tabView="clr-namespace:Syncfusion.Maui.TabView;assembly=Syncfusion.Maui.TabView"> |
| 6 | + |
| 7 | + <Grid VerticalOptions="Start"> |
| 8 | + <tabView:SfTabView x:Name="tabView" ScrollButtonBackground="Violet" ScrollButtonColor="Red" |
| 9 | + IsScrollButtonEnabled="True"> |
| 10 | + |
| 11 | + <tabView:SfTabItem Header="John"> |
| 12 | + <StackLayout Padding="10"> |
| 13 | + <Label Text="John is a software developer with 5 years of experience in building mobile apps." |
| 14 | + FontSize="16" |
| 15 | + HorizontalOptions="Center" |
| 16 | + VerticalOptions="Center" |
| 17 | + TextColor="Black" /> |
| 18 | + </StackLayout> |
| 19 | + </tabView:SfTabItem> |
| 20 | + |
| 21 | + <tabView:SfTabItem Header="Emily"> |
| 22 | + <StackLayout Padding="10"> |
| 23 | + <Label Text="Emily is a graphic designer who specializes in creating stunning visuals and brand identities." |
| 24 | + FontSize="16" |
| 25 | + HorizontalOptions="Center" |
| 26 | + VerticalOptions="Center" |
| 27 | + TextColor="Black" /> |
| 28 | + </StackLayout> |
| 29 | + </tabView:SfTabItem> |
| 30 | + |
| 31 | + <tabView:SfTabItem Header="Michael"> |
| 32 | + <StackLayout Padding="10"> |
| 33 | + <Label Text="Michael is a project manager known for his exceptional leadership and organizational skills." |
| 34 | + FontSize="16" |
| 35 | + HorizontalOptions="Center" |
| 36 | + VerticalOptions="Center" |
| 37 | + TextColor="Black" /> |
| 38 | + </StackLayout> |
| 39 | + </tabView:SfTabItem> |
| 40 | + |
| 41 | + <tabView:SfTabItem Header="Sarah"> |
| 42 | + <StackLayout Padding="10"> |
| 43 | + <Label Text="Sarah is a data scientist with expertise in machine learning and artificial intelligence." |
| 44 | + FontSize="16" |
| 45 | + HorizontalOptions="Center" |
| 46 | + VerticalOptions="Center" |
| 47 | + TextColor="Black" /> |
| 48 | + </StackLayout> |
| 49 | + </tabView:SfTabItem> |
| 50 | + |
| 51 | + <tabView:SfTabItem Header="David"> |
| 52 | + <StackLayout Padding="10"> |
| 53 | + <Label Text="David is a digital marketer skilled in SEO, content creation, and social media strategy." |
| 54 | + FontSize="16" |
| 55 | + HorizontalOptions="Center" |
| 56 | + VerticalOptions="Center" |
| 57 | + TextColor="Black" /> |
| 58 | + </StackLayout> |
| 59 | + </tabView:SfTabItem> |
| 60 | + |
| 61 | + <tabView:SfTabItem Header="Alice"> |
| 62 | + <StackLayout Padding="10"> |
| 63 | + <Label Text="Alice is a content writer with a flair for crafting compelling stories and articles." |
| 64 | + FontSize="16" |
| 65 | + HorizontalOptions="Center" |
| 66 | + VerticalOptions="Center" |
| 67 | + TextColor="Black" /> |
| 68 | + </StackLayout> |
| 69 | + </tabView:SfTabItem> |
| 70 | + |
| 71 | + <tabView:SfTabItem Header="James"> |
| 72 | + <StackLayout Padding="10"> |
| 73 | + <Label Text="James is a UI/UX designer focused on creating user-friendly and visually appealing designs." |
| 74 | + FontSize="16" |
| 75 | + HorizontalOptions="Center" |
| 76 | + VerticalOptions="Center" |
| 77 | + TextColor="Black" /> |
| 78 | + </StackLayout> |
| 79 | + </tabView:SfTabItem> |
| 80 | + |
| 81 | + <tabView:SfTabItem Header="Sophia"> |
| 82 | + <StackLayout Padding="10"> |
| 83 | + <Label Text="Sophia is a business analyst with expertise in identifying growth opportunities." |
| 84 | + FontSize="16" |
| 85 | + HorizontalOptions="Center" |
| 86 | + VerticalOptions="Center" |
| 87 | + TextColor="Black" /> |
| 88 | + </StackLayout> |
| 89 | + </tabView:SfTabItem> |
| 90 | + |
| 91 | + <tabView:SfTabItem Header="Robert"> |
| 92 | + <StackLayout Padding="10"> |
| 93 | + <Label Text="Robert is a cybersecurity expert dedicated to protecting data and systems from threats." |
| 94 | + FontSize="16" |
| 95 | + HorizontalOptions="Center" |
| 96 | + VerticalOptions="Center" |
| 97 | + TextColor="Black" /> |
| 98 | + </StackLayout> |
| 99 | + </tabView:SfTabItem> |
| 100 | + </tabView:SfTabView> |
| 101 | + </Grid> |
| 102 | +</ContentPage> |
0 commit comments