Skip to content

Commit

Permalink
feat(demo): add SourcePositionDemo
Browse files Browse the repository at this point in the history
  • Loading branch information
javier-godoy committed Dec 4, 2023
1 parent 474e72f commit 6f46436
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/test/java/com/flowingcode/vaadin/addons/demo/Demo.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@ public Demo() {
addDemo(SampleDemoHighlight.class);
addDemo(AdHocDemo.class);
addDemo(MultiSourceDemo.class);
addDemo(SourcePositionDemo.class);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*-
* #%L
* Commons Demo
* %%
* Copyright (C) 2020 - 2023 Flowing Code
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package com.flowingcode.vaadin.addons.demo;

import com.vaadin.flow.component.html.Div;
import com.vaadin.flow.component.html.Span;
import com.vaadin.flow.router.PageTitle;
import com.vaadin.flow.router.Route;

@Route(value = "demo/source-position", layout = Demo.class)
@PageTitle("Reversed orientation")
@DemoSource(sourcePosition = SourcePosition.PRIMARY)
// show-source @DemoSource(sourcePosition = SourcePosition.PRIMARY)
public class SourcePositionDemo extends Div {

public SourcePositionDemo() {
add(new Span("Demo component with source defaulted to primary position"));
}
}

0 comments on commit 6f46436

Please sign in to comment.