diff options
author | ankit-thanekar007 <ankit.thanekar007@gmail.com> | 2021-03-25 16:14:29 -0700 |
---|---|---|
committer | ankit-thanekar007 <ankit.thanekar007@gmail.com> | 2021-03-29 12:07:23 -0700 |
commit | 57a06ec668a24118dd2bbfef149be71d79acf94c (patch) | |
tree | fc0fa649c4a7d8d5d8f200b94714a3d3a1d28153 /src/constants | |
parent | 7a521127177838bcae0cd85b2e5bd912c46406b9 (diff) |
Refactoring changes
Diffstat (limited to 'src/constants')
-rw-r--r-- | src/constants/constants.ts | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/constants/constants.ts b/src/constants/constants.ts index d24e352e..91029b3a 100644 --- a/src/constants/constants.ts +++ b/src/constants/constants.ts @@ -186,3 +186,55 @@ export const SP_WIDTH = 375; export const SP_HEIGHT = 812; export const SP_PAGE_SIZE = 5; + +export const SETTINGS_DATA = { + SettingsAndPrivacy: [ + { + title: 'ACCOUNT', + data: [ + { + title: 'Suggested People Profile', + preimage: require('../assets/images/tagg-logo.png'), + postimage: require('../assets/images/settings/white-arrow.png'), + }, + { + title: 'Privacy', + preimage: require('../assets/images/settings/settings-white.png'), + postimage: require('../assets/images/settings/white-arrow.png'), + }, + ], + }, + { + title: 'GENERAL', + data: [ + { + title: 'Terms of use', + preimage: require('../assets/images/settings/termsofuse.png'), + postimage: require('../assets/images/settings/white-arrow.png'), + }, + { + title: 'Privacy Policy', + preimage: require('../assets/images/settings/privacypolicy.png'), + postimage: require('../assets/images/settings/white-arrow.png'), + }, + ], + }, + ], + PrivacyScreen: [ + { + title: '', + data: [ + { + title: 'Account Type', + preimage: require('../assets/images/settings/lock-white.png'), + postimage: require('../assets/images/settings/white-arrow.png'), + }, + { + title: 'Blocked Accounts', + preimage: require('../assets/images/settings/blocked-white.png'), + postimage: require('../assets/images/settings/white-arrow.png'), + }, + ], + }, + ], +}; |