You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// For example, if widths is []int{100, -1}, the first column is 100 pixels and the second column takes the remaining space.
128
139
// If widths is []int{100, -1, -2}, the first column is 100 pixels, the second column takes 1/3 of the remaining space, and the third column takes 2/3 of the remaining space.
129
140
//
130
-
// If widths is nil, one column width with -1 is used. This is the same as []int{-1}.
131
-
// If heights is nil, the default size is used. This is the same as []int{0}.
141
+
// If widths is nil, one column width with -1 is used for windows, and 0 (the default size) for popups.
142
+
// If heights is nil, 0 (the default size) is used.
132
143
//
133
144
// When the number of items exceeds the number of grid cells, a new row is started with the same grid layout.
0 commit comments