# `Plushie.Type.Length`
[🔗](https://github.com/plushie-ui/plushie-elixir/blob/v0.6.0/lib/plushie/type/length.ex#L1)

Size value for the `width` and `height` props on most widgets.

Maps to iced's `Length` enum. Accepts `:fill`, `:shrink`,
`{:fill_portion, n}`, or a numeric pixel value.

# `t`

```elixir
@type t() :: :fill | :shrink | {:fill_portion, pos_integer()} | number()
```

# `encode`

```elixir
@spec encode(length :: t()) :: String.t() | number() | map()
```

Encodes a length value to the wire format expected by the renderer.

## Examples

    iex> Plushie.Type.Length.encode(:fill)
    "fill"

    iex> Plushie.Type.Length.encode(:shrink)
    "shrink"

    iex> Plushie.Type.Length.encode({:fill_portion, 3})
    %{fill_portion: 3}

    iex> Plushie.Type.Length.encode(200)
    200

---

*Consult [api-reference.md](api-reference.md) for complete listing*
