Gwtbootstrap3 无法找到GWT bootstrap3 FlexTable

Gwtbootstrap3 无法找到GWT bootstrap3 FlexTable,gwtbootstrap3,Gwtbootstrap3,任何人都不知道GWT Bootstrap3中的FlexTable之类的东西。 我搜索了很多,但在GWT Bootstrap3中找不到flextable的东西。您可能想看看GWT Bootstrap3正在使用的 可以使用UiBinder设置基本网格: <b:Container ui:field="container"> <b:Row> <b:Column size="MD_4">...</b:Column> <b:Colum

任何人都不知道GWT Bootstrap3中的FlexTable之类的东西。
我搜索了很多,但在GWT Bootstrap3中找不到flextable的东西。

您可能想看看GWT Bootstrap3正在使用的

可以使用UiBinder设置基本网格:

<b:Container ui:field="container">
  <b:Row>
    <b:Column size="MD_4">...</b:Column>
    <b:Column size="MD_4">...</b:Column>
  </b:Row>
</b:Container>
因此,您可以根据需要设置和更改网格

@UiField
Container container;

Row row = new Row();

Column column = new Column(ColumnSize.MD_4);
column.add(new Label("Test"));

row.add(column);
container.add(row);