■ FlexLayout 엘리먼트의 Wrap 속성을 사용해 자식을 여러 줄로 배치하는 방법을 보여준다.
▶ MainPage.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
<?xml version="1.0" encoding="utf-8" ?> <ContentPage x:Class="TestProject.MainPage" xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"> <Grid Margin="10" RowDefinitions="Auto,*,Auto,*"> <Label Grid.Row="0" HorizontalOptions="Start" Margin="0,10,0,0" Text="Direction 속성 : Column, Wrap 속성 : Wrap" /> <Frame Grid.Row="1" Margin="0,10,0,0" CornerRadius="0" BorderColor="Black" Padding="2,2,2,2"> <ScrollView Orientation="Horizontal"> <FlexLayout Direction="Column" Wrap="Wrap"> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Magenta" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Magenta" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Magenta" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Magenta" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Magenta" /> </FlexLayout> </ScrollView> </Frame> <Label Grid.Row="2" HorizontalOptions="Start" Margin="0,10,0,0" Text="Direction 속성 : Row, Wrap 속성 : Wrap" /> <Frame Grid.Row="3" Margin="0,10,0,0" CornerRadius="0" BorderColor="Black" Padding="2,2,2,2"> <ScrollView Orientation="Vertical"> <FlexLayout Direction="Row" Wrap="Wrap"> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Magenta" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Magenta" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Magenta" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Magenta" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Red" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Green" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Blue" /> <BoxView Margin="1" WidthRequest="100" HeightRequest="100" Color="Magenta" /> </FlexLayout> </ScrollView> </Frame> </Grid> </ContentPage> |