Files
StepperView/Example/StepperView/StepTextView.swift
T
Badarinath Venkatnarayansetty 4872855275 Fixed merge conflicts
2020-04-17 13:30:00 -07:00

25 lines
649 B
Swift

//
// StepTextView.swift
// StepperView_Example
//
// Created by Venkatnarayansetty, Badarinath on 4/14/20.
// Copyright © 2020 CocoaPods. All rights reserved.
//
import Foundation
import SwiftUI
import StepperView
@available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
struct StepTextView: View {
var text:String
var body: some View {
VStack {
TextView(text: text, font: Font.system(size: 16, weight: Font.Weight.medium))
.foregroundColor(Colors.blue(.teal).rawValue)
.frame(maxWidth: .infinity, alignment: .leading)
.padding(.horizontal, 10)
}
}
}