Proyectos de Subversion Iphone Microlearning - Inconcert

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
//
2
//  NotificationListItemEmptyView.swift
3
//  twogetskills
4
//
5
//  Created by admin on 8/14/22.
6
//
7
 
8
import SwiftUI
9
 
10
struct NotificationListItemEmptyView: View {
11
 
12
 
13
    var body: some View {
14
        VStack(spacing: 0 ) {
15
        Group {
16
            HStack {
17
 
18
 
19
 
20
 
21
 
22
                VStack(spacing: 0)
23
                {
24
                    HStack {
25
                        Text(Config.LANG_NOTIFICATIONS_LIST_EMPTY)
26
                            .font(Font.custom(Config.FONT_NAME_BOLD, size: 14))
27
                            .foregroundColor(Color("color_capsule_list_item_title_foreground"))
28
 
29
                        Spacer()
30
 
31
 
32
                    }
33
 
34
 
35
                }.padding(.top, 10)
36
                .padding(.bottom, 10)
37
 
38
        }
39
 
40
 
41
        Divider()
42
        } .background(Color("color_capsule_list_item_background"))
43
        .padding(.leading, 5)
44
        .padding(.trailing, 5)
45
        }
46
    }
47
}
48
 
49
struct NotificationListItemEmptyView_Previews: PreviewProvider {
50
    static var previews: some View {
51
        NotificationListItemEmptyView()
52
    }
53
}