|
|
|
|
|
by klohto
1732 days ago
|
|
Out of my head (just amateur in Phoenix right now) you could just leverage the API endpoints in Phoenix and implement the iOS and Android frontend with them.
The Views are decoupled. So you can have the business logic, as you would normally do, inside Phoenix, then the API on top of this logic, and then you could either implement the whole LiveView workflow on top of the API or just directly on top of the business logic (if you’re feeling kinky but it invalidates the architecture Phoenix sets up for you). The Getting Started guide on Phoenix has a lot of useful material even for your use case. I might be missing something crucial though :) |
|