Packages

Brings CSS-like grid as well as auto-layouts for components. This allows one to dynamically add components to a scene. The goal is to bring some familiar layout apis to Scenic.

Current section

Files

Jump to

mix.exs

defmodule LayoutOMatic.MixProject do
use Mix.Project
def project do
[
app: :scenic_layout_o_matic,
version: "0.4.0",
elixir: "~> 1.8",
build_embedded: true,
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
name: "Scenic Layout-O-Matic",
source: "https://github.com/BWheatie/layout_o_matic"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
# mod: {LayoutOMatic, []},
extra_applications: []
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
{:scenic, "~> 0.10"},
{:font_metrics, "~> 0.3"}
]
end
defp description() do
"Brings CSS-like grid as well as auto-layouts for components. This allows
one to dynamically add components to a scene. The goal is to bring some familiar layout
apis to Scenic."
end
defp package() do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/BWheatie/layout_o_matic"}
]
end
end