Strypper / mauisland

MAUIsland 🏝️ is the number 1 controls gallery for .NET MAUI
MIT License
198 stars 14 forks source link

🚀 Add labels to ASP.NET Core roadmap #195

Closed Strypper closed 7 months ago

Strypper commented 7 months ago

Description

Add all the label with fixed positions according to this background roadmap image image

Public API Changes


                                    <Label
                                        Padding="0"
                                        AbsoluteLayout.LayoutBounds="0.39,0.079"
                                        AbsoluteLayout.LayoutFlags="PositionProportional"
                                        BackgroundColor="Red"
                                        FontSize="8"
                                        HeightRequest="25"
                                        HorizontalTextAlignment="Center"
                                        Opacity="0"
                                        Text="C#"
                                        VerticalTextAlignment="Center"
                                        WidthRequest="25">
                                        <Label.GestureRecognizers>
                                            <TapGestureRecognizer Command="{x:Binding OpenUrlCommand}" CommandParameter="{x:StaticResource CSharpFundamentalLink}" />
                                        </Label.GestureRecognizers>
                                        <Label.Behaviors>
                                            <toolkit:AnimationBehavior>
                                                <toolkit:AnimationBehavior.AnimationType>
                                                    <toolkit:FadeAnimation Opacity="1" />
                                                </toolkit:AnimationBehavior.AnimationType>
                                            </toolkit:AnimationBehavior>
                                        </Label.Behaviors>
                                    </Label>

Intended Use-Case

New feature

Strypper commented 7 months ago

git fetch origin git checkout 195-add-labels-to-aspnet-core-roadmap