// // PodcastEpisodeViewCell.swift // PodcastsClone // // Created by etudiant on 2023-05-12. // import SwiftUI struct PodcastEpisodeViewCell: View { var body: some View { // TODO add Divider() Text("Episode Title goes here") // TODO add styles to episode title // TODO add subtitle info incl duration - podcast title - by: podcast author - episode description // TODO add play button and rounded time left (in hours, minutes...) } } struct PodcastEpisodeViewCell_Previews: PreviewProvider { static var previews: some View { PodcastEpisodeViewCell() } }