Guest User

Untitled

a guest
Jul 16th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. @Route("hello-world")
  2. public class MainView extends VerticalLayout {
  3. public MainView() {
  4. TextField textField = new TextField("Enter your name");
  5. Button button = new Button("Click me", event ->
  6. add(new Label("Hello, " + textField.getValue())));
  7. add(textField, button);
  8. }
  9. }
Add Comment
Please, Sign In to add comment