mirror of
https://github.com/farcasclaudiu/IssueCarousel.git
synced 2026-06-22 11:01:23 +03:00
28 lines
611 B
C#
28 lines
611 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using CarouselView.FormsPlugin.iOS;
|
|
using Foundation;
|
|
using UIKit;
|
|
|
|
namespace IssueCarousel.iOS
|
|
{
|
|
[Register("AppDelegate")]
|
|
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
|
|
{
|
|
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
|
|
{
|
|
global::Xamarin.Forms.Forms.Init();
|
|
|
|
CarouselViewRenderer.Init();
|
|
|
|
|
|
LoadApplication(new App());
|
|
|
|
|
|
|
|
return base.FinishedLaunching(app, options);
|
|
}
|
|
}
|
|
}
|