Currently, Workflow User Tasks are not directly supported with Mendix Native Pages in the same way as they work in a web application.
The Workflow engine itself can run in the backend, but the generated Workflow Task pages are based on the web UI concept, so they cannot be opened directly as Native pages.
For Native Mobile applications, the recommended approach is usually:
Example:
Native App
→ Get current user's pending tasks
→ Show custom Native approval page
→ User approves/rejects
→ Microflow completes the workflow activity
This gives better control over the mobile UX and avoids depending on the workflow-generated task pages.
So the workflow can still be used for process orchestration, but the task UI needs to be implemented separately for Native.
Also, consider your Native app architecture:
Kindly mark this as the accepted answer if it helps.