diff --git a/android/.gradle/7.5.1/executionHistory/executionHistory.bin b/android/.gradle/7.5.1/executionHistory/executionHistory.bin index 05dd89fa..4ddffb0b 100644 Binary files a/android/.gradle/7.5.1/executionHistory/executionHistory.bin and b/android/.gradle/7.5.1/executionHistory/executionHistory.bin differ diff --git a/android/.gradle/7.5.1/executionHistory/executionHistory.lock b/android/.gradle/7.5.1/executionHistory/executionHistory.lock index 9308773a..e245f2fe 100644 Binary files a/android/.gradle/7.5.1/executionHistory/executionHistory.lock and b/android/.gradle/7.5.1/executionHistory/executionHistory.lock differ diff --git a/android/.gradle/7.5.1/fileHashes/fileHashes.bin b/android/.gradle/7.5.1/fileHashes/fileHashes.bin index 16c7356b..456f1ec6 100644 Binary files a/android/.gradle/7.5.1/fileHashes/fileHashes.bin and b/android/.gradle/7.5.1/fileHashes/fileHashes.bin differ diff --git a/android/.gradle/7.5.1/fileHashes/fileHashes.lock b/android/.gradle/7.5.1/fileHashes/fileHashes.lock index d5ef4ab2..9ed7e155 100644 Binary files a/android/.gradle/7.5.1/fileHashes/fileHashes.lock and b/android/.gradle/7.5.1/fileHashes/fileHashes.lock differ diff --git a/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock index bb574e7a..21d0ea2e 100644 Binary files a/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ diff --git a/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_0/graph.bin b/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_0/graph.bin index fe793d8e..8beceac0 100644 Binary files a/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_0/graph.bin and b/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_0/graph.bin differ diff --git a/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin b/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin index d1b51b3c..4df6d1bf 100644 Binary files a/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin and b/android/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin differ diff --git a/android/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex b/android/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex index 710865d2..7136bd90 100644 Binary files a/android/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex and b/android/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex differ diff --git a/android/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/android/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt index 517f3deb..bd94c85a 100644 --- a/android/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt +++ b/android/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt @@ -1,4 +1,4 @@ -#Mon May 05 11:25:25 SGT 2025 +#Tue May 06 11:28:05 SGT 2025 path.4=15/classes.dex path.3=14/classes.dex path.2=0/classes.dex diff --git a/android/app/build/intermediates/project_dex_archive/debug/out/com/project/yondu/unioilloyaltyapp/MainApplication.dex b/android/app/build/intermediates/project_dex_archive/debug/out/com/project/yondu/unioilloyaltyapp/MainApplication.dex index f8692740..454bd85f 100644 Binary files a/android/app/build/intermediates/project_dex_archive/debug/out/com/project/yondu/unioilloyaltyapp/MainApplication.dex and b/android/app/build/intermediates/project_dex_archive/debug/out/com/project/yondu/unioilloyaltyapp/MainApplication.dex differ diff --git a/android/app/build/outputs/apk/debug/app-debug.apk b/android/app/build/outputs/apk/debug/app-debug.apk index cb45caed..3fe814ab 100644 Binary files a/android/app/build/outputs/apk/debug/app-debug.apk and b/android/app/build/outputs/apk/debug/app-debug.apk differ diff --git a/android/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/android/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin index eb1694c9..3dd3c790 100644 Binary files a/android/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin and b/android/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ diff --git a/app/assets/bg_modal.png b/app/assets/bg_modal.png new file mode 100644 index 00000000..bd45d636 Binary files /dev/null and b/app/assets/bg_modal.png differ diff --git a/app/components/assets.manager.js b/app/components/assets.manager.js index 5d0e3423..ba3eacbd 100644 --- a/app/components/assets.manager.js +++ b/app/components/assets.manager.js @@ -96,7 +96,8 @@ const bg = { scheduler: require("../assets/bg_scheduler.png"), about: require("../assets/img_bg_about.png"), loginBg: require('../assets/login_background.jpg'), - login_bg: require('../assets/login_bg.jpg') + login_bg: require('../assets/login_bg.jpg'), + modal_bg: require("../assets/bg_modal.png"), } const boarding = [ diff --git a/app/components/elements.js b/app/components/elements.js index 0f752337..167c0c2c 100644 --- a/app/components/elements.js +++ b/app/components/elements.js @@ -1,5 +1,5 @@ import * as React from 'react'; -import { useState, useRef} from 'react'; +import { useState, useRef } from 'react'; import { Platform, View, Text, Image, TouchableOpacity, ScrollView, StyleSheet, TextInput, Modal, ActivityIndicator, Alert } from 'react-native' import { Button, Icon, Divider, Input } from 'react-native-elements' import { Actionsheet } from 'native-base'; @@ -20,7 +20,7 @@ var styles = StyleSheet.create({ flexDirection: 'column', alignItems: 'flex-start', width: '100%', - padding: 15 + padding: 15 }, row: { flexDirection: 'row', @@ -43,7 +43,7 @@ var styles = StyleSheet.create({ normalText: { color: 'rgba(0, 0, 0, 0.7)' }, - container: { + container: { flex: 1, backgroundColor: 'blue', flexDirection: 'row', @@ -94,100 +94,100 @@ var styles = StyleSheet.create({ const ModalDialogContainer = (props) => { const Content = props.content; return ( - - - - - + + + + + - + - + ) } -const ul = function(props){ +const ul = function (props) { const [drop, setdrop] = useState(false); const renderlist = (dataset) => { return dataset.map((data, index) => { return ( - - - {'\u2022' + " "} - - - - {data.label} - - - ) + + + {'\u2022' + " "} + + + + {data.label} + + + ) }) } return ( - - - {setdrop(!drop)}}> - {props.title} - - - - - - {drop ? {renderlist(props.list || [])} : null} - ) + + + { setdrop(!drop) }}> + {props.title} + + + + + + {drop ? {renderlist(props.list || [])} : null} + ) } -const product = function(props){ +const product = function (props) { return ( - - - + + + - {props.title} + {props.title} ) } -const loyaltycard = function(props){ +const loyaltycard = function (props) { return ( - - - + + + - {props.title} + {props.title} ) } -const card = function(props){ +const card = function (props) { let h = props.height ? props.height : 130 return ( - - - + + - {props.title} + {props.title} ) } -const button = function(props){ - return (