| Index: sky/sdk/lib/theme/view_configuration.dart
|
| diff --git a/sky/sdk/lib/framework/theme/view_configuration.dart b/sky/sdk/lib/theme/view_configuration.dart
|
| similarity index 72%
|
| copy from sky/sdk/lib/framework/theme/view_configuration.dart
|
| copy to sky/sdk/lib/theme/view_configuration.dart
|
| index 3934aa5e8250d7fefdc9147cb7002d0a629cb419..b31a5383869721c5b700e42b9a5add3d1e9d5911 100644
|
| --- a/sky/sdk/lib/framework/theme/view_configuration.dart
|
| +++ b/sky/sdk/lib/theme/view_configuration.dart
|
| @@ -5,7 +5,18 @@
|
| // Modeled after Android's ViewConfiguration:
|
| // https://github.com/android/platform_frameworks_base/blob/master/core/java/android/view/ViewConfiguration.java
|
|
|
| -const double kStatusBarHeight = 25.0;
|
| +const double kNotificationAreaHeight = 25.0;
|
| +// TODO(ianh): Figure out actual specced height for status bar
|
| +const double kStatusBarHeight = 50.0;
|
| +
|
| +// TODO(eseidel) Toolbar needs to change size based on orientation:
|
| +// http://www.google.com/design/spec/layout/structure.html#structure-app-bar
|
| +// Mobile Landscape: 48dp
|
| +// Mobile Portrait: 56dp
|
| +// Tablet/Desktop: 64dp
|
| +const double kToolBarHeight = 56.0;
|
| +
|
| +const double kMaterialDrawerHeight = 140.0;
|
| const double kScrollbarSize = 10.0;
|
| const double kScrollbarFadeDuration = 250.0;
|
| const double kScrollbarFadeDelay = 300.0;
|
|
|