vacarsu / flo_ui

A library of scenic components.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Get Started

{:flo_ui, "~> 0.1.0-alpha"}

To use FloUI the first thing you must do is add the shipped assets to your assets module.

defmodule MyApp.Assets do
  use Scenic.Assets.Static,
    otp_app: :my_app,
    sources: [
      "assets",                        # <- your assets
      {:scenic, "deps/scenic/assets"}, # <- scenic assets
      {:flo_ui, "deps/flo_ui/assets"}  # <- flo_ui assets
    ]
end

Then in your config

  config :scenic, :assets, module: MyApp.Assets

About

A library of scenic components.

License:MIT License


Languages

Language:Elixir 96.4%Language:HTML 3.6%