parent
c0693ba3ac
commit
47dabf7032
@ -0,0 +1,28 @@
|
||||
//
|
||||
// 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()
|
||||
}
|
||||
}
|
Loading…
Reference in new issue