initial commit

This commit is contained in:
2021-08-05 16:19:53 +08:00
commit 569c0a733f
71 changed files with 2111 additions and 0 deletions

15
Gallery.iOS/Main.cs Normal file
View File

@@ -0,0 +1,15 @@
using UIKit;
namespace Gallery.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");
}
}
}