Files
SodaLive
Preview Content
Resources
Sources
Agora
App
Common
Content
CustomView
Debug
Dialog
Explorer
Profile
CreatorCommunity
FanTalk
FollowerList
GetCheersResponse.swift
GetCreatorProfileResponse.swift
GetDonationAllResponse.swift
MemberBlockRequest.swift
PostCreatorNoticeRequest.swift
UserProfileActivitySummaryView.swift
UserProfileContentView.swift
UserProfileCreatorView.swift
UserProfileDonationAllView.swift
UserProfileDonationAllViewModel.swift
UserProfileDonationView.swift
UserProfileIntroduceView.swift
UserProfileLiveView.swift
UserProfileView.swift
UserProfileViewModel.swift
ExplorerApi.swift
ExplorerRepository.swift
ExplorerSectionView.swift
ExplorerView.swift
ExplorerViewModel.swift
GetExplorerResponse.swift
Extensions
Follow
Font
FortuneWheel
IAP
ImagePicker
Keyboard
Live
Main
Message
MyPage
NavigationBar
Onboarding
Report
Settings
Shape
Splash
UI
User
Utils
ContentView.swift
SodaLive.entitlements
SodaLive.xcworkspace
generated
.gitignore
Podfile
Podfile.lock
SodaLive-dev.entitlements
model-SodaLive-dev.json
model-SodaLive.json
sodalive-ios/SodaLive/Sources/Explorer/Profile/UserProfileIntroduceView.swift
2023-08-11 18:34:29 +09:00

34 lines
907 B
Swift

//
// UserProfileIntroduceView.swift
// SodaLive
//
// Created by klaus on 2023/08/11.
//
import SwiftUI
struct UserProfileIntroduceView: View {
let introduce: String
var body: some View {
VStack(alignment: .leading, spacing: 16.7) {
Text("채널 소개")
.font(.custom(Font.bold.rawValue, size: 16.7))
.foregroundColor(Color(hex: "eeeeee"))
Text(introduce)
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(Color(hex: "777777"))
}
.frame(width: screenSize().width - 26.7, alignment: .leading)
}
}
struct UserProfileIntroduceView_Previews: PreviewProvider {
static var previews: some View {
UserProfileIntroduceView(introduce: "상담사1 입니다.yyyyyyy\n\n\n\n\n\n\njgdgjdgjdgicyifyicyi\n\n\n\n\n\n\n\n\n\n\n\n")
}
}