Proyectos de Subversion Iphone Microlearning - Nuevo Interface

Rev

Rev 17 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 17 Rev 22
Línea 5... Línea 5...
5
//  Created by Efrain Yanez Recanatini on 7/28/22.
5
//  Created by Efrain Yanez Recanatini on 7/28/22.
6
//
6
//
Línea 7... Línea 7...
7
 
7
 
Línea 8... Línea 8...
8
import SwiftUI
8
import SwiftUI
Línea 9... Línea 9...
9
 
9
 
10
struct CommentAndRatingCommentListItem: View {
10
struct CommentAndRatingCommentListItemView: View {
Línea 11... Línea 11...
11
    
11
    
Línea 112... Línea 112...
112
        .padding(.trailing, 5)
112
        .padding(.trailing, 5)
113
        }
113
        }
114
    }
114
    }
115
}
115
}
Línea 116... Línea 116...
116
 
116
 
Línea 117... Línea 117...
117
struct CommentAndRatingCommentListItem_Previews: PreviewProvider {
117
struct CommentAndRatingCommentListItemView_Previews: PreviewProvider {
118
    
118
    
119
    static var comment = CommentAndRatingComment(
119
    static var comment = CommentAndRatingComment(
Línea 120... Línea 120...
120
        date: "2022-07-28T10:00:00", image: "", fullname: "Santiago Olivera", rating: 3.8, comment: "Comentario de prueba", link_delete: "LINK"
120
        date: "2022-07-28T10:00:00", image: "", fullname: "Santiago Olivera", rating: 3.8, comment: "Comentario de prueba", link_delete: "LINK"
121
    )
121
    )
Línea 122... Línea 122...
122
    
122
    
123
    static var previews: some View {
123
    static var previews: some View {
124
        CommentAndRatingCommentListItem(comment: comment) {
124
        CommentAndRatingCommentListItemView(comment: comment) {