Danul Hivi Vihan
Danul Hivi Vihan

Reputation: 181

Making table content horizontal MAUI

How to make this table content of tableview horizonatal?

enter image description here

How to make this table content of tableview horizonatal?

Upvotes: 0

Views: 385

Answers (1)

Jessie Zhang -MSFT
Jessie Zhang -MSFT

Reputation: 13919

If the content of the horizontal table is the same, you can use CollectionView to achieve this.

If the content of the horizontal table is different, you can use Grid or StackLayout to achieve this just as Jason mentioned.

For example:

   <ScrollView> 
    <HorizontalStackLayout
        Spacing="25"
        Padding="10"
        VerticalOptions="Center">

        <TableView  x:Name="table1"/>

        <TableView  x:Name="table2"/>
        
        <TableView  x:Name="table3"/>

    </HorizontalStackLayout>
</ScrollView>

Upvotes: 1

Related Questions