Proyectos de Subversion Iphone Microlearning - Inconcert

Rev

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

Rev 17 Rev 19
Línea 99... Línea 99...
99
                    .frame(height: 70)
99
                    .frame(height: 70)
Línea 100... Línea 100...
100
                
100
                
Línea 101... Línea 101...
101
                
101
                
102
                HStack {
102
                HStack {
103
                    
103
                    
104
                    if appData.userImage.isEmpty {
104
                    if appData.userImage.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
105
                         Image("logo")
105
                         Image("logo")
106
                            .resizable()
106
                            .resizable()
Línea 112... Línea 112...
112
                           
112
                           
113
                           
113
                           
114
                        
114
                        
115
                    } else {
115
                    } else {
116
                        CustomAsyncImageProfile(
116
                        CustomAsyncImageProfile(
117
                            url: URL(string: appData.userImage)!,
117
                            url: URL(string: appData.userImage.trimmingCharacters(in: .whitespacesAndNewlines))!,
118
                            placeholder: { Text(Config.LANG_COMMON_LOADING).font(.footnote).foregroundColor(.black)},
118
                            placeholder: { Text(Config.LANG_COMMON_LOADING).font(.footnote).foregroundColor(.black)},
Línea 128... Línea 128...
128
            VStack(spacing: 5) {
128
            VStack(spacing: 5) {
129
                VStack(spacing: 5) {
129
                VStack(spacing: 5) {
130
                    Text("\(appData.userFirstname) \(appData.userLastname)" )
130
                    Text("\(appData.userFirstname) \(appData.userLastname)" )
131
                        .bold()
131
                        .bold()
132
                        .font(.title)
132
                        .font(.title)
-
 
133
                        .foregroundColor(Color("color_textview_foreground"))
-
 
134
                    
133
                    Text("\(appData.userEmail)")
135
                    Text("\(appData.userEmail)")
134
                        .font(.body)
136
                        .font(.body)
135
                        .foregroundColor(Color("color_textview_foreground"))
137
                        .foregroundColor(Color("color_textview_foreground"))
136
                }.padding()
138
                }.padding()