flutter/examples/flights-app/app-scrollable.sky
Elliott Sprehn fe9b9d21d4 Add a version of flights that's made of components.
Also add a test, this checks nested Shadow DOM and <content> with
and without select.

R=ojan@chromium.org

Review URL: https://codereview.chromium.org/725763003
2014-11-14 15:00:12 -08:00

17 lines
326 B
Plaintext

<import src="../../framework/sky-element/sky-element.sky" as="SkyElement" />
<template>
<style>
:host {
flex: 1;
box-shadow: inset 0px 0px 22px 2px rgba(22, 22, 22, 0.63);
overflow: scroll;
}
</style>
<content></content>
</template>
<script>
SkyElement({
name: "app-scrollable"
});
</script>