Browse Source

Grouped proxiwash screens files

keplyx 4 years ago
parent
commit
cc6fd184c5

+ 1
- 1
navigation/AppNavigator.js View File

@@ -6,7 +6,7 @@ import SettingsScreen from '../screens/SettingsScreen';
6 6
 import AboutScreen from '../screens/About/AboutScreen';
7 7
 import ProximoListScreen from '../screens/Proximo/ProximoListScreen';
8 8
 import AboutDependenciesScreen from '../screens/About/AboutDependenciesScreen';
9
-import ProxiwashAboutScreen from '../screens/ProxiwashAboutScreen';
9
+import ProxiwashAboutScreen from '../screens/Proxiwash/ProxiwashAboutScreen';
10 10
 import ProximoAboutScreen from '../screens/Proximo/ProximoAboutScreen';
11 11
 import SelfMenuScreen from '../screens/SelfMenuScreen';
12 12
 import DebugScreen from '../screens/DebugScreen';

+ 1
- 1
navigation/MainDrawerNavigator.js View File

@@ -5,7 +5,7 @@ import {createDrawerNavigator} from 'react-navigation';
5 5
 
6 6
 import HomeScreen from '../screens/HomeScreen';
7 7
 import PlanningScreen from '../screens/PlanningScreen';
8
-import ProxiwashScreen from '../screens/ProxiwashScreen';
8
+import ProxiwashScreen from '../screens/Proxiwash/ProxiwashScreen';
9 9
 import ProximoMainScreen from '../screens/Proximo/ProximoMainScreen';
10 10
 import PlanexScreen from '../screens/PlanexScreen';
11 11
 import SettingsScreen from '../screens/SettingsScreen';

+ 1
- 1
navigation/MainTabNavigator.js View File

@@ -3,7 +3,7 @@ import {createMaterialBottomTabNavigator} from "react-navigation-material-bottom
3 3
 
4 4
 import HomeScreen from '../screens/HomeScreen';
5 5
 import PlanningScreen from '../screens/PlanningScreen';
6
-import ProxiwashScreen from '../screens/ProxiwashScreen';
6
+import ProxiwashScreen from '../screens/Proxiwash/ProxiwashScreen';
7 7
 import ProximoMainScreen from '../screens/Proximo/ProximoMainScreen';
8 8
 import PlanexScreen from '../screens/PlanexScreen';
9 9
 import CustomMaterialIcon from "../components/CustomMaterialIcon";

screens/ProxiwashAboutScreen.js → screens/Proxiwash/ProxiwashAboutScreen.js View File

@@ -3,10 +3,10 @@
3 3
 import * as React from 'react';
4 4
 import {Image, Linking, View} from 'react-native';
5 5
 import {Body, Card, CardItem, Container, Content, H2, H3, Left, Tab, TabHeading, Tabs, Text} from 'native-base';
6
-import CustomHeader from "../components/CustomHeader";
6
+import CustomHeader from "../../components/CustomHeader";
7 7
 import i18n from "i18n-js";
8
-import CustomMaterialIcon from "../components/CustomMaterialIcon";
9
-import ThemeManager from "../utils/ThemeManager";
8
+import CustomMaterialIcon from "../../components/CustomMaterialIcon";
9
+import ThemeManager from "../../utils/ThemeManager";
10 10
 
11 11
 type Props = {
12 12
     navigation: Object,
@@ -60,7 +60,7 @@ export default class ProxiwashAboutScreen extends React.Component<Props> {
60 60
                                 alignItems: 'center'
61 61
                             }}>
62 62
                                 <Image
63
-                                    source={require('../assets/proxiwash-logo.png')}
63
+                                    source={require('../../assets/proxiwash-logo.png')}
64 64
                                     style={{flex: 1, resizeMode: "contain"}}
65 65
                                     resizeMode="contain"/>
66 66
                             </View>

screens/ProxiwashScreen.js → screens/Proxiwash/ProxiwashScreen.js View File

@@ -3,14 +3,14 @@
3 3
 import * as React from 'react';
4 4
 import {Alert, Platform, View} from 'react-native';
5 5
 import {Body, Card, CardItem, Left, Right, Text} from 'native-base';
6
-import ThemeManager from '../utils/ThemeManager';
6
+import ThemeManager from '../../utils/ThemeManager';
7 7
 import i18n from "i18n-js";
8
-import CustomMaterialIcon from "../components/CustomMaterialIcon";
9
-import FetchedDataSectionList from "../components/FetchedDataSectionList";
10
-import NotificationsManager from "../utils/NotificationsManager";
8
+import CustomMaterialIcon from "../../components/CustomMaterialIcon";
9
+import FetchedDataSectionList from "../../components/FetchedDataSectionList";
10
+import NotificationsManager from "../../utils/NotificationsManager";
11 11
 import PlatformTouchable from "react-native-platform-touchable";
12 12
 import Touchable from "react-native-platform-touchable";
13
-import AsyncStorageManager from "../utils/AsyncStorageManager";
13
+import AsyncStorageManager from "../../utils/AsyncStorageManager";
14 14
 import * as Expo from "expo";
15 15
 
16 16
 const DATA_URL = "https://srv-falcon.etud.insa-toulouse.fr/~amicale_app/washinsa/washinsa.json";

Loading…
Cancel
Save