Skip to content

Florismart/Xamarin.ForinfinityAndBeyondView

Repository files navigation

ForinfinItyAndBeyondView

ForinfinityAndBeyondView is an Open Source iOS library that allows developers to easily an automatic scrolling view to their projects. Feel free to use it all you want in your iOS apps provided that you cite this project and include the license in your app.

Screenshot

Setup

1. In Xamarin, import the library as a iOS library project. Now you can build it and export as DLL.

2. Then, add ForinfinityAndBeyondView dll as a dependency to your existing project.

3. At Last quick setup your application class and you are good to go!

Or just import via nuget as Florismart.Forinfinityandbeyondview.iOS

	public override void ViewDidLoad ()
	{
		base.ViewDidLoad ();

		myHorizontalScroll1.LimitReached += (object sender, EventArgs e) => {
			//on limit reached!
		};

		myHorizontalScroll1.DirectionModeChanged += (object sender, EventArgs e) => {
			//on direction changed
		};

		//to stop
		myHorizontalScroll1.Stop ();

		//to start
		myVerticalScroll1.Start ();
	}

Usage

Configurations ended! Now open your storyboard or simple xibs and use our

  • HorizontalInfiniteAndBeyondView as UISCrollView horizontally
  • VerticalInfiniteAndBeyondView as UISCrollView vertically

...and set User Runtimes

Screenshot

About

Utility iOS library project for automatic Scrollcontainer view

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages