浏览代码

material basics

/main
xingwei.zhu 6 年前
当前提交
1e7da4a2
共有 8 个文件被更改,包括 95 次插入0 次删除
  1. 5
      Runtime/painting/colors.cs
  2. 5
      Runtime/service/system_chrome.cs
  3. 5
      Runtime/widgets/implicit_animations.cs
  4. 5
      Runtime/material/colors.cs
  5. 5
      Runtime/material/constants.cs
  6. 65
      Runtime/material/theme_data.cs
  7. 5
      Runtime/material/utils.cs

5
Runtime/painting/colors.cs


namespace Unity.UIWidgets.painting {
public class colors {
}
}

5
Runtime/service/system_chrome.cs


namespace Unity.UIWidgets.service {
public class system_chrome {
}
}

5
Runtime/widgets/implicit_animations.cs


namespace Unity.UIWidgets.widgets {
public class implicit_animations {
}
}

5
Runtime/material/colors.cs


namespace Unity.UIWidgets.material {
public class colors {
}
}

5
Runtime/material/constants.cs


namespace Unity.UIWidgets.material {
public class constants {
}
}

65
Runtime/material/theme_data.cs


using Unity.UIWidgets.foundation;
using Unity.UIWidgets.service;
using UnityEngine;
namespace Unity.UIWidgets.material {
public enum MaterialTapTargetSize {
padded,
shrinkWrap
}
public class ThemeData : Diagnosticable {
public ThemeData(
Brightness brightness,
MaterialColor primarySwatch,
Color primaryColor,
Brightness primaryColorBrightness,
Color primaryColorLight,
Color primaryColorDark,
Color accentColor,
Brightness accentColorBrightness,
Color canvasColor,
Color scaffoldBackgroundColor,
Color bottomAppBarColor,
Color cardColor,
Color dividerColor,
Color highlightColor,
Color splashColor
) {
}
readonly Brightness brightness;
readonly MaterialColor primarySwatch;
readonly Color primaryColor;
readonly Brightness primaryColorBrightness;
readonly Color primaryColorLight;
readonly Color primaryColorDark;
readonly Color accentColor;
readonly Brightness accentColorBrightness;
readonly Color canvasColor;
readonly Color scaffoldBackgroundColor;
readonly Color bottomAppBarColor;
readonly Color cardColor;
readonly Color dividerColor;
readonly Color highlightColor;
readonly Color splashColor;
}
}

5
Runtime/material/utils.cs


namespace Unity.UIWidgets.material {
public class utils {
}
}
正在加载...
取消
保存