This commit is contained in:
Ivan Vorobei
2019-06-26 22:12:35 +03:00
parent 2477f5d038
commit 48001a8e9a
1363 changed files with 6 additions and 3 deletions

View File

@@ -0,0 +1,38 @@
//
// SettingCell.swift
// SwiftUI_Jike
//
// Created by alexyang on 2019/6/5.
// Copyright © 2019 alexyang. All rights reserved.
//
import SwiftUI
struct SettingCell : View {
var imageName:String
var title:String
var body: some View {
VStack{
HStack(){
Image(imageName)
Text(title)
Spacer()
}
.padding(.top, 5)
.frame(height: 44)
.padding(.horizontal, 15)
Spacer()
Color(red: 240.0/255.0, green: 243.0/255.0, blue: 245.0/255.0)
.frame(height: 1)
}
.frame(height: 50)
}
}
#if DEBUG
struct SettingCell_Previews : PreviewProvider {
static var previews: some View {
SettingCell(imageName: "setting_quanzi", title: "我的圈子")
}
}
#endif