WIP: Add iOS version #10

Draft
Deadpikle wants to merge 67 commits from feature/ios into main
Showing only changes of commit 1785a91d6d - Show all commits
@@ -526,7 +526,9 @@ class CreatePDFReportViewModel : BaseViewModel, ICanCheckShutdown, ILogger
public void ResortPDFItemsByDate()
{
LogInfo("Sorting report files list...");
ReportFiles = new ObservableCollection<ReportFile>(ReportFiles.OrderBy(x => x.ReceiptDateTime));
ReportFiles = new ObservableCollection<ReportFile>(
ReportFiles.OrderBy(x => x.ReceiptDateTime)
.ThenBy(x => x.Title));
HasUnsavedWork = true;
}