flutter/examples/flights-app/app-menu-button.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

20 lines
367 B
Plaintext

<import src="../../framework/sky-element/sky-element.sky" as="SkyElement" />
<template>
<style>
:host {
display: flex;
border-radius: 4px;
justify-content: center;
align-items: center;
width: 30px;
height: 30px;
}
</style>
<content></content>
</template>
<script>
SkyElement({
name: "app-menu-button"
});
</script>