Proyectos de Subversion Iphone Microlearning - Inconcert

Rev

Autoría | Ultima modificación | Ver Log |

//
//  NotificationListItemEmptyView.swift
//  twogetskills
//
//  Created by admin on 8/14/22.
//

import SwiftUI

struct NotificationListItemEmptyView: View {
    
    
    var body: some View {
        VStack(spacing: 0 ) {
        Group {
            HStack {
             
                    
                
       
                
                VStack(spacing: 0)
                {
                    HStack {
                        Text(Config.LANG_NOTIFICATIONS_LIST_EMPTY)
                            .font(Font.custom(Config.FONT_NAME_BOLD, size: 14))
                            .foregroundColor(Color("color_capsule_list_item_title_foreground"))
                     
                        Spacer()
                        
                       
                    }
                
                
                }.padding(.top, 10)
                .padding(.bottom, 10)
            
        }
       
        
        Divider()
        } .background(Color("color_capsule_list_item_background"))
        .padding(.leading, 5)
        .padding(.trailing, 5)
        }
    }
}

struct NotificationListItemEmptyView_Previews: PreviewProvider {
    static var previews: some View {
        NotificationListItemEmptyView()
    }
}