View Source LayoutBuilder.Layout.Col (layout_builder v0.3.3)

Col represents a column inside a Row of a Layout.

Link to this section Summary

Link to this section Types

@type t() :: %LayoutBuilder.Layout.Col{
  id: Ecto.UUID.t() | nil,
  name: String.t(),
  rows: [LayoutBuilder.Layout.Row.t()] | nil
}

Link to this section Functions

@spec build_col() :: %LayoutBuilder.Layout.Col{id: Ecto.UUID.t(), name: nil, rows: []}
Link to this function

changeset(struct, attrs)

View Source