Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 885 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 885 Bytes

iNormal

A collection of Xamarin.iOS library written in C# that help simplify iOS development.

A really normal progress bar that function like a normal progress bar. A progress bar which can perform determinate progress and indeterminate progress.

progress bar indeterminate

Code auto layout using fluent interface and reduce many boilerplate code required for a simple layout.

NameView = new UIView()
{
    TranslatesAutoresizingMaskIntoConstraints = false
};
NameView.SetParentAndConstraints(View)
    .Left(NSLayoutRelation.Equal, View, NSLayoutAttribute.Left, 1f, 10f)
    .Right(NSLayoutRelation.Equal, View, NSLayoutAttribute.Right, 1f, 10f)
    .Top(NSLayoutRelation.Equal, View, NSLayoutAttribute.Top, 1f, 10f);