I have a Xamarin.Forms project that uses Prism, and the number of Views and View Models is growing unwieldy.
In web projects I usually use Feature Folders, grouping relevant code together, e.g.:
- Features
- Home
- Home.cshtml
- Home.cs
- Home.js
- HomeController.cs
- Widgets
- List.cshtml
- List.cs
- List.js
- Detail.cshtml
- Detail.cs
- Detail.js
- WidgetsController.cs
- Home
I'd like to do the same thing in the Xamarin.Forms project, but I don't know how to configure Prism to look for Views and View Models in these locations instead of the Views
and ViewModels
folders?