Generating the app_native.ex file creates the following:
def live_view() do
quote do
use LiveViewNative.LiveView,
formats: [
:html,
:swiftui
],
layouts: [
# notice ChatWeb.Layouts.HTML
html: {ChatWeb.Layouts.HTML, :app},
swiftui: {ChatWeb.Layouts.SwiftUI, :app}
]
unquote(verified_routes())
end
end
When it should be ChatWeb.Layouts. This results in the following error when running the server: no "app" html template defined for ChatWeb.Layouts.HTML (the module does not exist)
Generating the app_native.ex file creates the following:
When it should be
ChatWeb.Layouts
. This results in the following error when running the server:no "app" html template defined for ChatWeb.Layouts.HTML (the module does not exist)