Browse Source

Moved proximo and proxiwash images on the web

Arnaud Vergnet 3 years ago
parent
commit
faa174b8f1

BIN
assets/proximo-logo.png View File


BIN
assets/proxiwash-logo.png View File


+ 4
- 3
src/screens/Proximo/ProximoAboutScreen.js View File

10
     navigation: Object,
10
     navigation: Object,
11
 };
11
 };
12
 
12
 
13
+const LOGO = "https://etud.insa-toulouse.fr/~amicale_app/images/proximo-logo.png";
14
+
13
 /**
15
 /**
14
  * Class defining the proximo about screen.
16
  * Class defining the proximo about screen.
15
  */
17
  */
27
                     alignItems: 'center'
29
                     alignItems: 'center'
28
                 }}>
30
                 }}>
29
                     <Image
31
                     <Image
30
-                        source={require('../../../assets/proximo-logo.png')}
31
-                        style={{flex: 1, resizeMode: "contain"}}
32
-                        resizeMode="contain"/>
32
+                        source={{uri: LOGO}}
33
+                        style={{height: '100%', width: '100%', resizeMode: "contain"}}/>
33
                 </View>
34
                 </View>
34
                 <Text>{i18n.t('proximoScreen.description')}</Text>
35
                 <Text>{i18n.t('proximoScreen.description')}</Text>
35
                 <Card style={{margin: 5}}>
36
                 <Card style={{margin: 5}}>

+ 4
- 3
src/screens/Proxiwash/ProxiwashAboutScreen.js View File

10
     navigation: Object,
10
     navigation: Object,
11
 };
11
 };
12
 
12
 
13
+const LOGO = "https://etud.insa-toulouse.fr/~amicale_app/images/proxiwash-logo.png";
14
+
13
 /**
15
 /**
14
  * Class defining the proxiwash about screen.
16
  * Class defining the proxiwash about screen.
15
  */
17
  */
27
                     alignItems: 'center'
29
                     alignItems: 'center'
28
                 }}>
30
                 }}>
29
                     <Image
31
                     <Image
30
-                        source={require('../../../assets/proxiwash-logo.png')}
31
-                        style={{flex: 1, resizeMode: "contain"}}
32
-                        resizeMode="contain"/>
32
+                        source={{uri: LOGO}}
33
+                        style={{height: '100%', width: '100%', resizeMode: "contain"}}/>
33
                 </View>
34
                 </View>
34
                 <Text>{i18n.t('proxiwashScreen.description')}</Text>
35
                 <Text>{i18n.t('proxiwashScreen.description')}</Text>
35
                 <Card style={{margin: 5}}>
36
                 <Card style={{margin: 5}}>

+ 1
- 1
src/screens/Services/ServicesScreen.js View File

25
 const EMAIL_IMAGE = "https://etud-mel.insa-toulouse.fr/webmail/images/logo-bluemind.png";
25
 const EMAIL_IMAGE = "https://etud-mel.insa-toulouse.fr/webmail/images/logo-bluemind.png";
26
 const ENT_IMAGE = "https://ent.insa-toulouse.fr/media/org/jasig/portal/layout/tab-column/xhtml-theme/insa/institutional/LogoInsa.png";
26
 const ENT_IMAGE = "https://ent.insa-toulouse.fr/media/org/jasig/portal/layout/tab-column/xhtml-theme/insa/institutional/LogoInsa.png";
27
 
27
 
28
-const PROXIMO_IMAGE = require("../../../assets/proximo-logo.png");
28
+const PROXIMO_IMAGE = "https://etud.insa-toulouse.fr/~amicale_app/images/proximo-logo.png"
29
 const WIKETUD_LINK = "https://wiki.etud.insa-toulouse.fr/resources/assets/wiketud.png?ff051";
29
 const WIKETUD_LINK = "https://wiki.etud.insa-toulouse.fr/resources/assets/wiketud.png?ff051";
30
 const AMICALE_IMAGE = require("../../../assets/amicale.png");
30
 const AMICALE_IMAGE = require("../../../assets/amicale.png");
31
 const EE_IMAGE = "https://etud.insa-toulouse.fr/~eeinsat/wp-content/uploads/2019/09/logo-blanc.png";
31
 const EE_IMAGE = "https://etud.insa-toulouse.fr/~eeinsat/wp-content/uploads/2019/09/logo-blanc.png";

Loading…
Cancel
Save