您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
27 行
777 B
27 行
777 B
using System.Collections.Generic;
|
|
using UIWidgetsGallery.gallery;
|
|
using Unity.UIWidgets.engine;
|
|
using Unity.UIWidgets.widgets;
|
|
|
|
namespace UIWidgetsGallery
|
|
{
|
|
public class GalleryMain : UIWidgetsPanel
|
|
{
|
|
protected new void OnEnable()
|
|
{
|
|
base.OnEnable();
|
|
}
|
|
|
|
protected override void main()
|
|
{
|
|
ui_.runApp(new GalleryApp());
|
|
}
|
|
|
|
protected override void onEnable()
|
|
{
|
|
AddFont("Material Icons", new List<string> {"MaterialIcons-Regular.ttf"}, new List<int> {0});
|
|
AddFont("CupertinoIcons", new List<string> {"CupertinoIcons.ttf"}, new List<int> {0});
|
|
AddFont("GalleryIcons", new List<string> {"gallery/GalleryIcons.ttf"}, new List<int> {0});
|
|
}
|
|
}
|
|
}
|