defmodule MoonWeb.Pages.Design.BottomSheetPage do @moduledoc false use MoonWeb, :live_view alias MoonWeb.Components.Anatomy alias MoonWeb.Components.Page alias MoonWeb.Components.ComponentPageDescription alias MoonWeb.Components.ExamplesList alias MoonWeb.Components.PropsTable alias MoonWeb.Examples.Design.BottomSheetExample data(breadcrumbs, :any, default: [ %{ to: "/components", name: "Components" }, %{ to: "/components/v2/bottomsheet", name: "BottomSheet" } ] ) def render(assigns) do ~F"""

The bottom sheet component is a modified dialog that slides from the bottom of the screen, common pattern in mobile apps.

Bottom sheets can contain any anything so let your imagination fly.

{component_anatomy()}
""" end def component_anatomy do """ ... ... """ end end