gpt4 book ai didi

vaadin - 如何调整布局中按钮之间的间距,例如 Vaadin Flow 中的水平布局?

转载 作者:行者123 更新时间:2023-12-03 08:13:53 25 4
gpt4 key购买 nike

例如,如何减少以下 Horizo​​ntalLayout 中按钮之间的间距:

enter image description here

代码:

HorizontalLayout horizontalLayout = new HorizontalLayout();
horizontalLayout.setWidthFull();
horizontalLayout.setJustifyContentMode(JustifyContentMode.END);
buttons.forEach(button -> {
horizontalLayout.add(button);
horizontalLayout.addThemeVariants(ButtonVariant.LUMO_SMALL);
});

** 这是适用于 Vaadin Flow (Vaadin 14+)

最佳答案

使用“spacing-s”或“spacing-xs”代替 HL 上默认的“spacing”主题

var hl = new HorizontalLayout();
hl.setSpacing(false);
hl.getThemeList().add("spacing-s");

参见JavaDoc

关于vaadin - 如何调整布局中按钮之间的间距,例如 Vaadin Flow 中的水平布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70073212/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com