You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
659 B
29 lines
659 B
//
|
|
// 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()
|
|
}
|
|
}
|