How to make UIViewRepresentable inherit UIView? – Ios swift
I have a UIViewRepresentable of a third-party library component FSCalendar. However, I need this to conform to type UIView... Is there a way to do this? Any help is appreciated :) struct CalendarViewRepresentable: UIViewRepresentable { typealias UIViewType = FSCalendar var…