You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
904 B
26 lines
904 B
5 years ago
|
using System;
|
||
|
using Unity.UIWidgets.painting;
|
||
|
|
||
|
namespace Unity.UIWidgets.material {
|
||
|
public static class Constants {
|
||
|
public const float kToolbarHeight = 56.0f;
|
||
|
|
||
|
public const float kBottomNavigationBarHeight = 56.0f;
|
||
|
|
||
|
public const float kTextTabBarHeight = 48.0f;
|
||
|
|
||
|
public static readonly TimeSpan kThemeChangeDuration = new TimeSpan(0, 0, 0, 0, 200);
|
||
|
|
||
|
public const float kRadialReactionRadius = 20.0f;
|
||
|
|
||
|
public static readonly TimeSpan kRadialReactionDuration = new TimeSpan(0, 0, 0, 0, 100);
|
||
|
|
||
|
public const int kRadialReactionAlpha = 0x1F;
|
||
|
|
||
|
public static readonly TimeSpan kTabScrollDuration = new TimeSpan(0, 0, 0, 0, 300);
|
||
|
|
||
|
public static readonly EdgeInsets kTabLabelPadding = EdgeInsets.symmetric(horizontal: 16.0f);
|
||
|
|
||
|
public static readonly EdgeInsets kMaterialListPadding = EdgeInsets.symmetric(vertical: 8.0f);
|
||
|
}
|
||
|
}
|