You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 10, 2026. It is now read-only.
Imagine your liveview is the module defmodule MyApp.SearchLive.Index
You run mix lvn.gen.live swiftui SearchLive.Index or mix lvn.gen.live swiftui Search, both have issues with the assumptions the generator makes
This can be made to work manually with some manual renaming of the modules, but I noticed that it wasn't able to find the default *.neex file, it complained about a missing render function. If you add a manually defined render fn to the new file, it will work however.
Perhaps one should have to supply the full namespace to the generator command (e.g., SearchLive.Index) instead of the currently desired Search
Imagine your liveview is the module
defmodule MyApp.SearchLive.IndexYou run
mix lvn.gen.live swiftui SearchLive.Indexormix lvn.gen.live swiftui Search, both have issues with the assumptions the generator makesThis can be made to work manually with some manual renaming of the modules, but I noticed that it wasn't able to find the default
*.neexfile, it complained about a missingrenderfunction. If you add a manually definedrenderfn to the new file, it will work however.Perhaps one should have to supply the full namespace to the generator command (e.g.,
SearchLive.Index) instead of the currently desiredSearch