1
0
Fork 0

Updated icons and fixed about links

Dieser Commit ist enthalten in:
keplyx 2019-08-24 19:17:21 +02:00
Ursprung 3ba3d332f8
Commit c8bab93868
8 geänderte Dateien mit 10 neuen und 12 gelöschten Zeilen

Datei anzeigen

@ -10,7 +10,7 @@
"android",
"web"
],
"version": "0.0.13",
"version": "0.0.14",
"orientation": "portrait",
"primaryColor": "#be1522",
"icon": "./assets/android.icon.png",
@ -36,7 +36,7 @@
},
"android": {
"package": "fr.amicaleinsat.application",
"versionCode": 1,
"versionCode": 2,
"icon": "./assets/android.icon.png",
"adaptiveIcon": {
"foregroundImage": "./assets/android.adaptive-icon.png",

Binäre Datei nicht angezeigt.

Vorher

Breite:  |  Höhe:  |  Größe: 70 KiB

Nachher

Breite:  |  Höhe:  |  Größe: 35 KiB

Binäre Datei nicht angezeigt.

Vorher

Breite:  |  Höhe:  |  Größe: 161 KiB

Nachher

Breite:  |  Höhe:  |  Größe: 26 KiB

Binäre Datei nicht angezeigt.

Vorher

Breite:  |  Höhe:  |  Größe: 56 KiB

Nachher

Breite:  |  Höhe:  |  Größe: 9,5 KiB

Binäre Datei nicht angezeigt.

Vorher

Breite:  |  Höhe:  |  Größe: 56 KiB

Nachher

Breite:  |  Höhe:  |  Größe: 9,5 KiB

Binäre Datei nicht angezeigt.

Vorher

Breite:  |  Höhe:  |  Größe: 50 KiB

Nachher

Breite:  |  Höhe:  |  Größe: 34 KiB

Datei anzeigen

@ -11,13 +11,13 @@ import CustomMaterialIcon from "../../components/CustomMaterialIcon";
const links = {
appstore: 'https://qwant.com',
playstore: 'https://qwant.com',
playstore: 'https://play.google.com/store/apps/details?id=fr.amicaleinsat.application',
expo: 'https://expo.io/@amicaleinsat/application-amicale',
git: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/README.md',
bugs: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/issues',
changelog: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/Changelog.md',
license: 'https://git.srv-falcon.etud.insa-toulouse.fr/vergnet/application-amicale/src/branch/master/LICENSE',
mail: "mailto:arnaud.vergnet@netc.fr?subject=Application Amicale INSA Toulouse&body=",
mail: "mailto:vergnet@etud.insa-toulouse.fr?subject=Application Amicale INSA Toulouse&body=",
linkedin: 'https://www.linkedin.com/in/arnaud-vergnet-434ba5179/',
facebook: 'https://www.facebook.com/arnaud.vergnet',
react: 'https://facebook.github.io/react-native/',

Datei anzeigen

@ -3,10 +3,10 @@
import * as React from 'react';
import {Button, H3, Text} from 'native-base';
import i18n from "i18n-js";
import {Platform, View} from "react-native";
import {View} from "react-native";
import CustomMaterialIcon from "../components/CustomMaterialIcon";
import ThemeManager from "../utils/ThemeManager";
import {Linking, Notifications} from "expo";
import {Linking} from "expo";
import BaseContainer from "../components/BaseContainer";
type Props = {
@ -63,12 +63,10 @@ export default class PlanningScreen extends React.Component<Props> {
}}>
{i18n.t('planningScreen.wipSubtitle')}
</Text>
{Platform.OS === 'android' ?
<Button block style={{marginTop: 20, marginRight: 10, marginLeft: 10}}
onPress={() => openWebLink('https://expo.io/@amicaleinsat/application-amicale')}>
<Text>Try the beta</Text>
</Button>
: <View/>}
<Button block style={{marginTop: 20, marginRight: 10, marginLeft: 10}}
onPress={() => openWebLink('https://www.facebook.com/groups/2054302624595234/')}>
<Text>Clubs et Evenements</Text>
</Button>
</View>
</BaseContainer>
);