浏览代码

Merge branch 'master' into update_readme

/main
GitHub 5 年前
当前提交
93ffaef2
共有 3 个文件被更改,包括 4 次插入1 次删除
  1. 1
      README-ZH.md
  2. 1
      README.md
  3. 3
      Runtime/material/bottom_navigation_bar.cs

1
README-ZH.md


## 使用要求
#### Unity
安装 **Unity 2018.4.10f1(LTS)****Unity 2019.1.14f1** 及其更高版本。 你可以从[https://unity3d.com/get-unity/download](https://unity3d.com/get-unity/download)下载最新的Unity。
#### UIWidgets包

1
README.md


## Requirements
#### Unity
Install **Unity 2018.4.10f1 (LTS)** or **Unity 2019.1.14f1** and above. You can download the latest Unity on https://unity3d.com/get-unity/download.
#### UIWidgets Package

3
Runtime/material/bottom_navigation_bar.cs


child: text
);
}
else if (this.showUnselectedLabels) {
else if (!this.showUnselectedLabels) {
text = new FadeTransition(
opacity: this.animation,
child: text

Color backgroundColor = null;
switch (this.widget.type) {
case BottomNavigationBarType.fix:
backgroundColor = this.widget.backgroundColor;
break;
case BottomNavigationBarType.shifting:
backgroundColor = this._backgroundColor;

正在加载...
取消
保存