Implementing Vertical Design for Android and iOS, Horizontal Layout for Windows in MAUI: Guidance Needed

Sarfaraz Sable 30 Reputation points
2024-03-29T09:48:02.8933333+00:00

Is it possible to implement a vertical design for Android and iOS, while ensuring a horizontal layout for Windows in a MAUI application? If so, could you guide me on how to achieve this?

Developer technologies .NET .NET MAUI
{count} votes

1 answer

Sort by: Most helpful
  1. Yonglun Liu (Shanghai Wicresoft Co,.Ltd.) 50,126 Reputation points Microsoft External Staff
    2024-04-01T02:58:12.3766667+00:00

    Hello,

    MAUI officially provides APIs that adapt to different styles according to different platforms.

    You can refer to the following code snippets and official documentation.

        <StackLayout Orientation="{OnPlatform Android=Vertical,iOS=Vertical,WinUI=Horizontal}">
    
            <Label Text="Mobile Vertical" Margin="10"/>
    
            <Label Text="Winui Horizontal" Margin="10"/>
    
        </StackLayout>
    

    Best Regards,

    Alec Liu.


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.