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

Layout represents a Layout built by the Layout Builder.

Link to this section Summary

Link to this section Types

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

Link to this section Functions

@spec add_col(t(), LayoutBuilder.Layout.Row.t()) :: t()
@spec add_row(t()) :: t()
Link to this function

changeset(struct, attrs)

View Source