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

Sarfaraz Sable 20 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?

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
2,870 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Yonglun Liu (Shanghai Wicresoft Co,.Ltd.) 35,546 Reputation points Microsoft Vendor
    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