Skip to content

Commit

Permalink
reaarranged files
Browse files Browse the repository at this point in the history
  • Loading branch information
pmahend1 committed Dec 6, 2019
1 parent bd8286f commit e89ac9f
Show file tree
Hide file tree
Showing 114 changed files with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,59 @@
# XamUtilities
Utilities for Xamarin Forms

## Release notes

### Version 1.0.0

- RoundFrame added

## Guide

Add nuget to your Xamarin forms project

```xml

<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:ref="clr-namespace:XamUtilities.Views;assembly=XamUtilities"
x:Class="XamUtilities.Sample.MainPage">
<StackLayout HorizontalOptions="CenterAndExpand"
Padding="25">
<ref:RoundFrame Diameter="150"
BackgroundColor="Blue">
<Label Text="Round Frame"
TextColor="White"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"
HorizontalOptions="Center"
VerticalOptions="Center" />
</ref:RoundFrame>
<ref:RoundFrame HeightRequest="175"
d:CornerRadius="87.5"
BackgroundColor="Red">
<Label Text="Round Frame"
TextColor="White"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"
HorizontalOptions="Center"
VerticalOptions="Center" />
</ref:RoundFrame>
<ref:RoundFrame WidthRequest="125"
HeightRequest="125"
HorizontalOptions="Center"
d:CornerRadius="62.5"
BackgroundColor="Green">
<Label Text="Round Frame"
TextColor="White"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"
HorizontalOptions="Center"
VerticalOptions="Center" />
</ref:RoundFrame>
</StackLayout>
</ContentPage>
```

## Screenshots

![RoundFrame](./ScreenShots/RoundFrame.png)
Binary file added ScreenShots/RoundFrame.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e89ac9f

Please sign in to comment.