Skip to content
Sinsy edited this page Dec 9, 2023 · 2 revisions

Welcome to the Flowless wiki!

In FXML use

Since fxml is loaded, it requires no-parameter construction. So it needs to be wrapped with .

<VirtualizedScrollPane>
    <content>
    </content>
</VirtualizedScrollPane>

CSS Reference Guide

Pseudo states

/* Applies the CSS to the VirtualizedScrollPane
   when its Virtualized content has focus */
.virtualized-scroll-pane:content-focused {}

Flowless-specific CSS styles

.virtual-flow {
  /* "front" lays out cells from top-to-bottom or left-to-right depending on the orientation
     "rear"  lays out cells from bottom-to-top or right-to-left depending on the orientation */
  -flowless-gravity: [front | rear];
}