Rest of rename to QControlKit

This commit is contained in:
2020-09-07 08:42:42 -05:00
parent 69ddf3383c
commit 0aea997309
85 changed files with 2542 additions and 39 deletions
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace QControlKitXamDemo.iOS
{
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, "AppDelegate");
}
}
}