Flutter 列和行
Flutter columns and rows
只有我一个人认为 Flutter 的列和行是错误的吗?
当然,行应该 运行 从上到下,列横跨。
我是不是漏掉了什么?
排字的术语是横排的。一列总是垂直的。参见 https://en.m.wikipedia.org/wiki/Row_(database)
A widget that displays its children in a horizontal array.
A widget that displays its children in a vertical array.
一行下的每个直接小部件都是水平的,而当您将它放在容器或另一个小部件中时,该树下的每个小部件都与上面的下一个小部件对齐。
如果您曾经使用过 SQL,并且看过它的 tables,(或任何其他 table),您可以清楚地观察到所有列都是垂直排列的,而所有的行都是水平排列的。
flutter也是遵循同样的原则。
只有我一个人认为 Flutter 的列和行是错误的吗?
当然,行应该 运行 从上到下,列横跨。
我是不是漏掉了什么?
排字的术语是横排的。一列总是垂直的。参见 https://en.m.wikipedia.org/wiki/Row_(database)
A widget that displays its children in a horizontal array.
A widget that displays its children in a vertical array.
一行下的每个直接小部件都是水平的,而当您将它放在容器或另一个小部件中时,该树下的每个小部件都与上面的下一个小部件对齐。
如果您曾经使用过 SQL,并且看过它的 tables,(或任何其他 table),您可以清楚地观察到所有列都是垂直排列的,而所有的行都是水平排列的。 flutter也是遵循同样的原则。