Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Unified Diff: sky/sdk/lib/framework/components2/fixed_height_scrollable.dart

Issue 1168203004: Add material shadows to toolbar and drawer (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/sdk/lib/framework/components2/drawer.dart ('k') | sky/sdk/lib/framework/components2/tool_bar.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/framework/components2/fixed_height_scrollable.dart
diff --git a/sky/sdk/lib/framework/components2/fixed_height_scrollable.dart b/sky/sdk/lib/framework/components2/fixed_height_scrollable.dart
index b70932e918802f1cee32649eaa3a20cfa5cc070b..e3becda0128d251a40d925fc39ba52b8e2952ec5 100644
--- a/sky/sdk/lib/framework/components2/fixed_height_scrollable.dart
+++ b/sky/sdk/lib/framework/components2/fixed_height_scrollable.dart
@@ -63,10 +63,15 @@ abstract class FixedHeightScrollable extends Scrollable {
return new SizeObserver(
callback: _handleSizeChanged,
child: new Clip(
- child: new Transform(
- transform: transform,
- child: new BlockContainer(
- children: buildItems(itemNumber, itemCount))
+ child: new DecoratedBox(
+ decoration: const BoxDecoration(
+ backgroundColor: const Color(0xFFFFFFFF)
+ ),
+ child: new Transform(
+ transform: transform,
+ child: new BlockContainer(
+ children: buildItems(itemNumber, itemCount))
+ )
)
)
);
« no previous file with comments | « sky/sdk/lib/framework/components2/drawer.dart ('k') | sky/sdk/lib/framework/components2/tool_bar.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698