vault_detail_welcome.fxml 927 B

1234567891011121314151617181920212223
  1. <?import javafx.scene.control.Hyperlink?>
  2. <?import javafx.scene.image.Image?>
  3. <?import javafx.scene.image.ImageView?>
  4. <?import javafx.scene.layout.VBox?>
  5. <?import javafx.scene.text.Text?>
  6. <?import javafx.scene.text.TextFlow?>
  7. <VBox xmlns:fx="http://javafx.com/fxml"
  8. xmlns="http://javafx.com/javafx"
  9. fx:controller="org.cryptomator.ui.mainwindow.WelcomeController"
  10. alignment="CENTER"
  11. spacing="24">
  12. <children>
  13. <ImageView VBox.vgrow="ALWAYS" fitHeight="128" preserveRatio="true" smooth="true" cache="true">
  14. <Image url="@../img/logo.png"/>
  15. </ImageView>
  16. <TextFlow styleClass="text-flow" prefWidth="-Infinity" visible="${controller.noVaultPresent}" managed="${controller.noVaultPresent}">
  17. <Text text="%main.vaultDetail.welcomeOnboarding"/>
  18. <Text text=" "/>
  19. <Hyperlink text="docs.cryptomator.org" styleClass="hyperlink-underline" onAction="#visitGettingStartedGuide"/>
  20. </TextFlow>
  21. </children>
  22. </VBox>