Proyectos de Subversion Iphone Microlearning - Inconcert

Rev

Rev 4 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 4 Rev 19
Línea 81... Línea 81...
81
                
81
                
Línea 82... Línea 82...
82
 
82
 
83
                    
83
                    
84
                HStack {
84
                HStack {
85
                        
85
                        
86
                        if appData.userImage.isEmpty {
86
                        if appData.userImage.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
87
                             Image("logo")
87
                             Image("logo")
Línea 94... Línea 94...
94
                               
94
                               
95
                               
95
                               
96
                            
96
                            
97
                        } else {
97
                        } else {
98
                            CustomAsyncImageProfile(
98
                            CustomAsyncImageProfile(
99
                                url: URL(string: appData.userImage)!,
99
                                url: URL(string: appData.userImage.trimmingCharacters(in: .whitespacesAndNewlines))!,
100
                                placeholder: { Text(Config.LANG_COMMON_LOADING).font(.footnote).foregroundColor(.black)},
100
                                placeholder: { Text(Config.LANG_COMMON_LOADING).font(.footnote).foregroundColor(.black)},