mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This CL removes a bunch of examples that don't actually work in the current engine. I've also renamed example-element to custom-element and example-scrollable to scrolling because the word "example" in the name is redundant with the name of the directory. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/980323003
26 lines
532 B
Plaintext
26 lines
532 B
Plaintext
<!--
|
|
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
-->
|
|
<import src="/sky/framework/sky-element.sky" />
|
|
<sky-element>
|
|
<template>
|
|
<style>
|
|
div {
|
|
height: 50px;
|
|
width: 50px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<div>Hi</div>
|
|
</template>
|
|
<script>
|
|
@Tagname('example')
|
|
class ExampleElement extends SkyElement {
|
|
}
|
|
|
|
_init(script) => register(script, ExampleElement);
|
|
</script>
|
|
</sky-element>
|