Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuarezruiz committed May 23, 2022
1 parent 82a2f1d commit 252f344
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 4 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ The CircularLayout is a simple Panel derivative that lays out its children in a
<Label Text="12" mauipane:CircularLayout.Angle="360" mauipane:CircularLayout.Radius="90" />
</mauipane:CircularLayout>
```
<img src="https://raw.githubusercontent.com/jsuarezruiz/MauiPane/main/images/circularlayout.png" Width="250" />

![CircularLayout](https://raw.githubusercontent.com/jsuarezruiz/MauiPane/main/images/circularlayout.png)

### DockLayout

Expand All @@ -49,7 +50,8 @@ The DockLayout allows you to **dock** the child controls to the top, bottom, lef
<Button mauipane:DockLayout.Dock="Right" Text="Right" WidthRequest="80"/>
</mauipane:DockLayout>
```
<img src="https://raw.githubusercontent.com/jsuarezruiz/MauiPane/main/images/docklayout.png" Width="250" />

![DockLayout](https://raw.githubusercontent.com/jsuarezruiz/MauiPane/main/images/docklayout.png)

### UniformGrid

Expand All @@ -68,7 +70,8 @@ The UniformGrid is just like the Grid, with the possibility of multiple rows and
<BoxView Color="Pink" />
</mauipane:UniformGrid>
```
<img src="https://raw.githubusercontent.com/jsuarezruiz/MauiPane/main/images/uniformgrid.png" Width="250" />

![UniformGrid](https://raw.githubusercontent.com/jsuarezruiz/MauiPane/main/images/uniformgrid.png)

### WrapLayout

Expand All @@ -90,7 +93,8 @@ The WrapLayout will position each of its child controls next to the other, horiz
<BoxView Color="Pink" />
</mauipane:WrapLayout>
```
<img src="https://raw.githubusercontent.com/jsuarezruiz/MauiPane/main/images/wraplayout.png" Width="250" />

![WrapLayout](https://raw.githubusercontent.com/jsuarezruiz/MauiPane/main/images/wraplayout.png)

## Feedback

Expand Down
24 changes: 24 additions & 0 deletions src/MauiPane/MauiPane.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
<PackageLicenseFile>README.md</PackageLicenseFile>
<PackageId>MauiPane</PackageId>
<Title>MauiPane</Title>
<Description>.NET MAUI Layouts Library.</Description>
<Copyright>Javier Suárez Ruiz</Copyright>
<PackageProjectUrl>https://github.com/jsuarezruiz/MauiPane</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/jsuarezruiz/MauiPane</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>dotnet,dotnet-maui,maui,layout,</PackageTags>
<Authors>Javier Suárez Ruiz</Authors>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
Expand All @@ -23,4 +36,15 @@
<Folder Include="Platforms\Windows\" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit 252f344

Please sign in to comment.