AutorÃa | Ultima modificación | Ver Log |
//
// CommentAndRatingIntroductionView.swift
// twogetskills
//
// Created by Efrain Yanez Recanatini on 7/28/22.
//
import SwiftUI
struct CommentAndRatingIntroductionView: View {
var capsuleModel : CapsuleModel
var body: some View {
GeometryReader { geometry in
ScrollView {
TextHtmlView(content: capsuleModel.description)
.frame(width: geometry.size.width, height: geometry.size.height
)
} .background(Color("color_window_background"))
}
}
}
struct CommentAndRatingIntroductionView_Previews: PreviewProvider {
static var capsuleModel = CapsuleModel()
static var previews: some View {
CommentAndRatingIntroductionView(capsuleModel: capsuleModel)
}
}