View Source Kino.Layout (Kino v0.13.1)
Layout utilities for arranging multiple kinos together.
Summary
Types
@opaque t()
Functions
Arranges outputs into a grid.
Note that the grid does not support scrolling, it always squeezes the content, such that it does not exceed the page width.
Options
:columns
- the number of columns in the grid. Defaults to1
:boxed
- whether the grid should be wrapped in a bordered box. Defaults tofalse
:gap
- the amount of spacing between grid items in pixels. Defaults to8
Examples
images =
for path <- paths do
path |> File.read!() |> Kino.Image.new(:jpeg)
end
Kino.Layout.grid(images, columns: 3)
Arranges outputs into separate tabs.
Examples
data = [
%{id: 1, name: "Elixir", website: "https://elixir-lang.org"},
%{id: 2, name: "Erlang", website: "https://www.erlang.org"}
]
Kino.Layout.tabs([
Table: Kino.DataTable.new(data),
Raw: data
])