Proyectos de Subversion Iphone Microlearning - Nuevo Interface

Rev

Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

//
//  CommentAndRatingIntroductionView.swift
//  twogetskills
//
//  Created by Efrain Yanez Recanatini on 7/28/22.
//

import SwiftUI

struct CommentAndRatingIntroductionView: View {
    
    var introduction: String
    
    var body: some View {

        ScrollView {
        TextHtmlView(content: introduction)
        .padding(10)
            
        } .background(Color("color_window_background"))
    }
}


struct CommentAndRatingIntroductionView_Previews: PreviewProvider {
    
    static var introduction : String = "<h1>Titulo </h1><b>Cada</b>"

    static var previews: some View {
        CommentAndRatingIntroductionView(introduction: introduction)
    }
}