rename Pixiview from Gallery

This commit is contained in:
2021-08-05 10:34:39 +08:00
parent c60e3a6445
commit 2985fdb654
206 changed files with 7847 additions and 7847 deletions

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

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