我有一个 FlowPane,每次添加新子项时我都想换行(另一个文本条目)
Text text1 = new Text("Here is some text");
Text text2 = new Text("This should be on a new line");
flowPane.getChildren().add(text1);
flowPane.getChildren().add(text2); //should go to the next line
这只是将文本彼此相邻地附加,如下所示:
"Here is some textThis should be on a new line"
有没有人知道解决这个问题的方法?似乎它应该是 API 的直接部分,但我找不到与此问题相关的任何内容。