1 August 2022

AbsoluteLayout in MAUI

 In this example we are going to see AbsoluteLayout  Example in MAUI.

1) Add new page and Update code as below.

<?xml version="1.0" encoding="utf-8" ?>

<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"

             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"

             x:Class="MauiApp1.AbsoluteLayoutEXP1"

             Title="AbsoluteLayoutEXP1">

    <AbsoluteLayout Margin="40">

        <BoxView Color="Blue"

             AbsoluteLayout.LayoutFlags="PositionProportional"

             AbsoluteLayout.LayoutBounds="0.5, 0, 100, 100"

             Rotation="30" />

        <BoxView Color="Green"

             AbsoluteLayout.LayoutFlags="PositionProportional"

             AbsoluteLayout.LayoutBounds="0.5, 0, 100, 100"

             Rotation="60" />

        <BoxView Color="Red"

             AbsoluteLayout.LayoutFlags="PositionProportional"

             AbsoluteLayout.LayoutBounds="0.5, 0, 100, 100" />

    </AbsoluteLayout>

</ContentPage>

Output:



Code in Github: https://github.com/adi501/MAUI

No comments:

Post a Comment