mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 12:21:01 +00:00
1 line
32 KiB
Plaintext
1 line
32 KiB
Plaintext
{"dependencies":[{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":26,"index":26}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"react-native","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":27},"end":{"line":9,"column":22,"index":131}}],"key":"KyzuX10g6ixS9UfynhmjlvCIG3g=","exportNames":["*"],"imports":1}},{"name":"@expo/vector-icons","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":10,"column":0,"index":132},"end":{"line":10,"column":46,"index":178}}],"key":"ow7vkrqkIckRjlSi/+MhMmRYtUE=","exportNames":["*"],"imports":1}},{"name":"react-native-safe-area-context","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":11,"column":0,"index":179},"end":{"line":11,"column":67,"index":246}}],"key":"XjdTKvCUWX6CbQzg5fSDHG/WgHk=","exportNames":["*"],"imports":1}},{"name":"react/jsx-dev-runtime","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"L9D70Z4hi4aGuui1ysja/oQ5ytI=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _jsxFileName = \"/app/frontend/src/screens/NotificationsScreen.tsx\",\n _s = $RefreshSig$();\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return NotificationsScreen;\n }\n });\n require(_dependencyMap[0], \"react\");\n var _reactNative = require(_dependencyMap[1], \"react-native\");\n var _expoVectorIcons = require(_dependencyMap[2], \"@expo/vector-icons\");\n var _reactNativeSafeAreaContext = require(_dependencyMap[3], \"react-native-safe-area-context\");\n var _reactJsxDevRuntime = require(_dependencyMap[4], \"react/jsx-dev-runtime\");\n function NotificationsScreen(_ref) {\n _s();\n var navigation = _ref.navigation;\n var insets = (0, _reactNativeSafeAreaContext.useSafeAreaInsets)();\n var notifications = [{\n id: '1',\n title: 'New Governance Proposal',\n message: 'Proposal #42: Increase monthly PEZ rewards by 10%',\n time: '2 hours ago',\n type: 'governance',\n read: false\n }, {\n id: '2',\n title: 'Transaction Confirmed',\n message: 'You received 100 HEZ from 5GrwvaEF5...',\n time: '5 hours ago',\n type: 'transaction',\n read: false\n }, {\n id: '3',\n title: 'Staking Reward',\n message: 'You earned 5.2 PEZ staking rewards',\n time: '1 day ago',\n type: 'reward',\n read: true\n }];\n var getIconName = type => {\n switch (type) {\n case 'governance':\n return 'megaphone';\n case 'transaction':\n return 'swap-horizontal';\n case 'reward':\n return 'gift';\n default:\n return 'notifications';\n }\n };\n var getIconColor = type => {\n switch (type) {\n case 'governance':\n return '#EE2A35';\n case 'transaction':\n return '#3B82F6';\n case 'reward':\n return '#10B981';\n default:\n return '#6B7280';\n }\n };\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: [styles.container, {\n paddingTop: insets.top\n }],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.header,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n onPress: () => navigation.goBack(),\n style: styles.backButton,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"arrow-back\",\n size: 24,\n color: \"#1F2937\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 74,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 73,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.headerTitle,\n children: \"Notifications\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 76,\n columnNumber: 9\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.markAllButton,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.markAllText,\n children: \"Mark all read\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 78,\n columnNumber: 11\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 77,\n columnNumber: 9\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 72,\n columnNumber: 7\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.ScrollView, {\n contentContainerStyle: styles.scrollContent,\n children: notifications.map(notification => /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: [styles.notificationCard, !notification.read && styles.notificationCardUnread],\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: [styles.iconContainer, {\n backgroundColor: `${getIconColor(notification.type)}20`\n }],\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: getIconName(notification.type),\n size: 24,\n color: getIconColor(notification.type)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 97,\n columnNumber: 15\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 91,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.notificationContent,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.notificationHeader,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.notificationTitle,\n children: notification.title\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 106,\n columnNumber: 17\n }, this), !notification.read && /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.unreadDot\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 107,\n columnNumber: 40\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 105,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.notificationMessage,\n children: notification.message\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 109,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.notificationTime,\n children: notification.time\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 110,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 104,\n columnNumber: 13\n }, this)]\n }, notification.id, true, {\n fileName: _jsxFileName,\n lineNumber: 84,\n columnNumber: 11\n }, this))\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 82,\n columnNumber: 7\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 70,\n columnNumber: 5\n }, this);\n }\n _s(NotificationsScreen, \"3VSCEmKsdYPLcILj9K4icfPtK54=\", false, function () {\n return [_reactNativeSafeAreaContext.useSafeAreaInsets];\n });\n _c = NotificationsScreen;\n var styles = _reactNative.StyleSheet.create({\n container: {\n flex: 1,\n backgroundColor: '#F8F9FA'\n },\n header: {\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'space-between',\n paddingHorizontal: 16,\n paddingVertical: 16,\n backgroundColor: '#FFF',\n borderBottomWidth: 1,\n borderBottomColor: '#E5E7EB'\n },\n backButton: {\n width: 40,\n height: 40,\n borderRadius: 20,\n backgroundColor: '#F3F4F6',\n alignItems: 'center',\n justifyContent: 'center'\n },\n headerTitle: {\n fontSize: 18,\n fontWeight: '700',\n color: '#1F2937'\n },\n markAllButton: {\n paddingHorizontal: 12,\n paddingVertical: 6,\n borderRadius: 8,\n backgroundColor: '#F3F4F6'\n },\n markAllText: {\n fontSize: 12,\n fontWeight: '600',\n color: '#6B7280'\n },\n scrollContent: {\n padding: 16\n },\n notificationCard: {\n flexDirection: 'row',\n backgroundColor: '#FFF',\n padding: 16,\n borderRadius: 12,\n marginBottom: 12,\n shadowColor: '#000',\n shadowOffset: {\n width: 0,\n height: 1\n },\n shadowOpacity: 0.05,\n shadowRadius: 4,\n elevation: 2\n },\n notificationCardUnread: {\n borderLeftWidth: 3,\n borderLeftColor: '#EE2A35'\n },\n iconContainer: {\n width: 48,\n height: 48,\n borderRadius: 24,\n alignItems: 'center',\n justifyContent: 'center',\n marginRight: 12\n },\n notificationContent: {\n flex: 1\n },\n notificationHeader: {\n flexDirection: 'row',\n alignItems: 'center',\n marginBottom: 4\n },\n notificationTitle: {\n fontSize: 16,\n fontWeight: '600',\n color: '#1F2937',\n flex: 1\n },\n unreadDot: {\n width: 8,\n height: 8,\n borderRadius: 4,\n backgroundColor: '#EE2A35'\n },\n notificationMessage: {\n fontSize: 14,\n color: '#6B7280',\n marginBottom: 4\n },\n notificationTime: {\n fontSize: 12,\n color: '#9CA3AF'\n }\n });\n var _c;\n $RefreshReg$(_c, \"NotificationsScreen\");\n});","lineCount":302,"map":[[9,2,13,15,"Object"],[9,8,13,15],[9,9,13,15,"defineProperty"],[9,23,13,15],[9,24,13,15,"exports"],[9,31,13,15],[10,4,13,15,"enumerable"],[10,14,13,15],[11,4,13,15,"get"],[11,7,13,15],[11,18,13,15,"get"],[11,19,13,15],[12,6,13,15],[12,13,13,15,"NotificationsScreen"],[12,32,13,15],[13,4,13,15],[14,2,13,15],[15,2,1,0,"require"],[15,9,1,0],[15,10,1,0,"_dependencyMap"],[15,24,1,0],[16,2,2,0],[16,6,2,0,"_reactNative"],[16,18,2,0],[16,21,2,0,"require"],[16,28,2,0],[16,29,2,0,"_dependencyMap"],[16,43,2,0],[17,2,10,0],[17,6,10,0,"_expoVectorIcons"],[17,22,10,0],[17,25,10,0,"require"],[17,32,10,0],[17,33,10,0,"_dependencyMap"],[17,47,10,0],[18,2,11,0],[18,6,11,0,"_reactNativeSafeAreaContext"],[18,33,11,0],[18,36,11,0,"require"],[18,43,11,0],[18,44,11,0,"_dependencyMap"],[18,58,11,0],[19,2,11,67],[19,6,11,67,"_reactJsxDevRuntime"],[19,25,11,67],[19,28,11,67,"require"],[19,35,11,67],[19,36,11,67,"_dependencyMap"],[19,50,11,67],[20,2,13,15],[20,11,13,24,"NotificationsScreen"],[20,30,13,43,"NotificationsScreen"],[20,31,13,43,"_ref"],[20,35,13,43],[20,37,13,65],[21,4,13,65,"_s"],[21,6,13,65],[22,4,13,65],[22,8,13,46,"navigation"],[22,18,13,56],[22,21,13,56,"_ref"],[22,25,13,56],[22,26,13,46,"navigation"],[22,36,13,56],[23,4,14,2],[23,8,14,8,"insets"],[23,14,14,14],[23,17,14,17],[23,21,14,17,"useSafeAreaInsets"],[23,48,14,34],[23,49,14,34,"useSafeAreaInsets"],[23,66,14,34],[23,68,14,35],[23,69,14,36],[24,4,16,2],[24,8,16,8,"notifications"],[24,21,16,21],[24,24,16,24],[24,25,17,4],[25,6,18,6,"id"],[25,8,18,8],[25,10,18,10],[25,13,18,13],[26,6,19,6,"title"],[26,11,19,11],[26,13,19,13],[26,38,19,38],[27,6,20,6,"message"],[27,13,20,13],[27,15,20,15],[27,66,20,66],[28,6,21,6,"time"],[28,10,21,10],[28,12,21,12],[28,25,21,25],[29,6,22,6,"type"],[29,10,22,10],[29,12,22,12],[29,24,22,24],[30,6,23,6,"read"],[30,10,23,10],[30,12,23,12],[31,4,24,4],[31,5,24,5],[31,7,25,4],[32,6,26,6,"id"],[32,8,26,8],[32,10,26,10],[32,13,26,13],[33,6,27,6,"title"],[33,11,27,11],[33,13,27,13],[33,36,27,36],[34,6,28,6,"message"],[34,13,28,13],[34,15,28,15],[34,55,28,55],[35,6,29,6,"time"],[35,10,29,10],[35,12,29,12],[35,25,29,25],[36,6,30,6,"type"],[36,10,30,10],[36,12,30,12],[36,25,30,25],[37,6,31,6,"read"],[37,10,31,10],[37,12,31,12],[38,4,32,4],[38,5,32,5],[38,7,33,4],[39,6,34,6,"id"],[39,8,34,8],[39,10,34,10],[39,13,34,13],[40,6,35,6,"title"],[40,11,35,11],[40,13,35,13],[40,29,35,29],[41,6,36,6,"message"],[41,13,36,13],[41,15,36,15],[41,51,36,51],[42,6,37,6,"time"],[42,10,37,10],[42,12,37,12],[42,23,37,23],[43,6,38,6,"type"],[43,10,38,10],[43,12,38,12],[43,20,38,20],[44,6,39,6,"read"],[44,10,39,10],[44,12,39,12],[45,4,40,4],[45,5,40,5],[45,6,41,3],[46,4,43,2],[46,8,43,8,"getIconName"],[46,19,43,19],[46,22,43,23,"type"],[46,26,43,35],[46,30,43,40],[47,6,44,4],[47,14,44,12,"type"],[47,18,44,16],[48,8,45,6],[48,13,45,11],[48,25,45,23],[49,10,46,8],[49,17,46,15],[49,28,46,26],[50,8,47,6],[50,13,47,11],[50,26,47,24],[51,10,48,8],[51,17,48,15],[51,34,48,32],[52,8,49,6],[52,13,49,11],[52,21,49,19],[53,10,50,8],[53,17,50,15],[53,23,50,21],[54,8,51,6],[55,10,52,8],[55,17,52,15],[55,32,52,30],[56,6,53,4],[57,4,54,2],[57,5,54,3],[58,4,56,2],[58,8,56,8,"getIconColor"],[58,20,56,20],[58,23,56,24,"type"],[58,27,56,36],[58,31,56,41],[59,6,57,4],[59,14,57,12,"type"],[59,18,57,16],[60,8,58,6],[60,13,58,11],[60,25,58,23],[61,10,59,8],[61,17,59,15],[61,26,59,24],[62,8,60,6],[62,13,60,11],[62,26,60,24],[63,10,61,8],[63,17,61,15],[63,26,61,24],[64,8,62,6],[64,13,62,11],[64,21,62,19],[65,10,63,8],[65,17,63,15],[65,26,63,24],[66,8,64,6],[67,10,65,8],[67,17,65,15],[67,26,65,24],[68,6,66,4],[69,4,67,2],[69,5,67,3],[70,4,69,2],[70,24,70,4],[70,28,70,4,"_reactJsxDevRuntime"],[70,47,70,4],[70,48,70,4,"jsxDEV"],[70,54,70,4],[70,56,70,5,"_reactNative"],[70,68,70,9],[70,69,70,9,"View"],[70,73,70,9],[71,6,70,10,"style"],[71,11,70,15],[71,13,70,17],[71,14,70,18,"styles"],[71,20,70,24],[71,21,70,25,"container"],[71,30,70,34],[71,32,70,36],[72,8,70,38,"paddingTop"],[72,18,70,48],[72,20,70,50,"insets"],[72,26,70,56],[72,27,70,57,"top"],[73,6,70,61],[73,7,70,62],[73,8,70,64],[74,6,70,64,"children"],[74,14,70,64],[74,30,72,6],[74,34,72,6,"_reactJsxDevRuntime"],[74,53,72,6],[74,54,72,6,"jsxDEV"],[74,60,72,6],[74,62,72,7,"_reactNative"],[74,74,72,11],[74,75,72,11,"View"],[74,79,72,11],[75,8,72,12,"style"],[75,13,72,17],[75,15,72,19,"styles"],[75,21,72,25],[75,22,72,26,"header"],[75,28,72,33],[76,8,72,33,"children"],[76,16,72,33],[76,32,73,8],[76,36,73,8,"_reactJsxDevRuntime"],[76,55,73,8],[76,56,73,8,"jsxDEV"],[76,62,73,8],[76,64,73,9,"_reactNative"],[76,76,73,25],[76,77,73,25,"TouchableOpacity"],[76,93,73,25],[77,10,73,26,"onPress"],[77,17,73,33],[77,19,73,35,"onPress"],[77,20,73,35],[77,25,73,41,"navigation"],[77,35,73,51],[77,36,73,52,"goBack"],[77,42,73,58],[77,43,73,59],[77,44,73,61],[78,10,73,62,"style"],[78,15,73,67],[78,17,73,69,"styles"],[78,23,73,75],[78,24,73,76,"backButton"],[78,34,73,87],[79,10,73,87,"children"],[79,18,73,87],[79,33,74,10],[79,37,74,10,"_reactJsxDevRuntime"],[79,56,74,10],[79,57,74,10,"jsxDEV"],[79,63,74,10],[79,65,74,11,"_expoVectorIcons"],[79,81,74,19],[79,82,74,19,"Ionicons"],[79,90,74,19],[80,12,74,20,"name"],[80,16,74,24],[80,18,74,25],[80,30,74,37],[81,12,74,38,"size"],[81,16,74,42],[81,18,74,44],[81,20,74,47],[82,12,74,48,"color"],[82,17,74,53],[82,19,74,54],[83,10,74,63],[84,12,74,63,"fileName"],[84,20,74,63],[84,22,74,63,"_jsxFileName"],[84,34,74,63],[85,12,74,63,"lineNumber"],[85,22,74,63],[86,12,74,63,"columnNumber"],[86,24,74,63],[87,10,74,63],[87,17,74,65],[88,8,74,66],[89,10,74,66,"fileName"],[89,18,74,66],[89,20,74,66,"_jsxFileName"],[89,32,74,66],[90,10,74,66,"lineNumber"],[90,20,74,66],[91,10,74,66,"columnNumber"],[91,22,74,66],[92,8,74,66],[92,15,75,26],[92,16,75,27],[92,31,76,8],[92,35,76,8,"_reactJsxDevRuntime"],[92,54,76,8],[92,55,76,8,"jsxDEV"],[92,61,76,8],[92,63,76,9,"_reactNative"],[92,75,76,13],[92,76,76,13,"Text"],[92,80,76,13],[93,10,76,14,"style"],[93,15,76,19],[93,17,76,21,"styles"],[93,23,76,27],[93,24,76,28,"headerTitle"],[93,35,76,40],[94,10,76,40,"children"],[94,18,76,40],[94,20,76,41],[95,8,76,54],[96,10,76,54,"fileName"],[96,18,76,54],[96,20,76,54,"_jsxFileName"],[96,32,76,54],[97,10,76,54,"lineNumber"],[97,20,76,54],[98,10,76,54,"columnNumber"],[98,22,76,54],[99,8,76,54],[99,15,76,60],[99,16,76,61],[99,31,77,8],[99,35,77,8,"_reactJsxDevRuntime"],[99,54,77,8],[99,55,77,8,"jsxDEV"],[99,61,77,8],[99,63,77,9,"_reactNative"],[99,75,77,25],[99,76,77,25,"TouchableOpacity"],[99,92,77,25],[100,10,77,26,"style"],[100,15,77,31],[100,17,77,33,"styles"],[100,23,77,39],[100,24,77,40,"markAllButton"],[100,37,77,54],[101,10,77,54,"children"],[101,18,77,54],[101,33,78,10],[101,37,78,10,"_reactJsxDevRuntime"],[101,56,78,10],[101,57,78,10,"jsxDEV"],[101,63,78,10],[101,65,78,11,"_reactNative"],[101,77,78,15],[101,78,78,15,"Text"],[101,82,78,15],[102,12,78,16,"style"],[102,17,78,21],[102,19,78,23,"styles"],[102,25,78,29],[102,26,78,30,"markAllText"],[102,37,78,42],[103,12,78,42,"children"],[103,20,78,42],[103,22,78,43],[104,10,78,56],[105,12,78,56,"fileName"],[105,20,78,56],[105,22,78,56,"_jsxFileName"],[105,34,78,56],[106,12,78,56,"lineNumber"],[106,22,78,56],[107,12,78,56,"columnNumber"],[107,24,78,56],[108,10,78,56],[108,17,78,62],[109,8,78,63],[110,10,78,63,"fileName"],[110,18,78,63],[110,20,78,63,"_jsxFileName"],[110,32,78,63],[111,10,78,63,"lineNumber"],[111,20,78,63],[112,10,78,63,"columnNumber"],[112,22,78,63],[113,8,78,63],[113,15,79,26],[113,16,79,27],[114,6,79,27],[115,8,79,27,"fileName"],[115,16,79,27],[115,18,79,27,"_jsxFileName"],[115,30,79,27],[116,8,79,27,"lineNumber"],[116,18,79,27],[117,8,79,27,"columnNumber"],[117,20,79,27],[118,6,79,27],[118,13,80,12],[118,14,80,13],[118,29,82,6],[118,33,82,6,"_reactJsxDevRuntime"],[118,52,82,6],[118,53,82,6,"jsxDEV"],[118,59,82,6],[118,61,82,7,"_reactNative"],[118,73,82,17],[118,74,82,17,"ScrollView"],[118,84,82,17],[119,8,82,18,"contentContainerStyle"],[119,29,82,39],[119,31,82,41,"styles"],[119,37,82,47],[119,38,82,48,"scrollContent"],[119,51,82,62],[120,8,82,62,"children"],[120,16,82,62],[120,18,83,9,"notifications"],[120,31,83,22],[120,32,83,23,"map"],[120,35,83,26],[120,36,83,28,"notification"],[120,48,83,40],[120,65,84,10],[120,69,84,10,"_reactJsxDevRuntime"],[120,88,84,10],[120,89,84,10,"jsxDEV"],[120,95,84,10],[120,97,84,11,"_reactNative"],[120,109,84,27],[120,110,84,27,"TouchableOpacity"],[120,126,84,27],[121,10,86,12,"style"],[121,15,86,17],[121,17,86,19],[121,18,87,14,"styles"],[121,24,87,20],[121,25,87,21,"notificationCard"],[121,41,87,37],[121,43,88,14],[121,44,88,15,"notification"],[121,56,88,27],[121,57,88,28,"read"],[121,61,88,32],[121,65,88,36,"styles"],[121,71,88,42],[121,72,88,43,"notificationCardUnread"],[121,94,88,65],[121,95,89,14],[122,10,89,14,"children"],[122,18,89,14],[122,34,91,12],[122,38,91,12,"_reactJsxDevRuntime"],[122,57,91,12],[122,58,91,12,"jsxDEV"],[122,64,91,12],[122,66,91,13,"_reactNative"],[122,78,91,17],[122,79,91,17,"View"],[122,83,91,17],[123,12,92,14,"style"],[123,17,92,19],[123,19,92,21],[123,20,93,16,"styles"],[123,26,93,22],[123,27,93,23,"iconContainer"],[123,40,93,36],[123,42,94,16],[124,14,94,18,"backgroundColor"],[124,29,94,33],[124,31,94,35],[124,34,94,38,"getIconColor"],[124,46,94,50],[124,47,94,51,"notification"],[124,59,94,63],[124,60,94,64,"type"],[124,64,94,68],[124,65,94,69],[125,12,94,74],[125,13,94,75],[125,14,95,16],[126,12,95,16,"children"],[126,20,95,16],[126,35,97,14],[126,39,97,14,"_reactJsxDevRuntime"],[126,58,97,14],[126,59,97,14,"jsxDEV"],[126,65,97,14],[126,67,97,15,"_expoVectorIcons"],[126,83,97,23],[126,84,97,23,"Ionicons"],[126,92,97,23],[127,14,98,16,"name"],[127,18,98,20],[127,20,98,22,"getIconName"],[127,31,98,33],[127,32,98,34,"notification"],[127,44,98,46],[127,45,98,47,"type"],[127,49,98,51],[127,50,98,60],[128,14,99,16,"size"],[128,18,99,20],[128,20,99,22],[128,22,99,25],[129,14,100,16,"color"],[129,19,100,21],[129,21,100,23,"getIconColor"],[129,33,100,35],[129,34,100,36,"notification"],[129,46,100,48],[129,47,100,49,"type"],[129,51,100,53],[130,12,100,55],[131,14,100,55,"fileName"],[131,22,100,55],[131,24,100,55,"_jsxFileName"],[131,36,100,55],[132,14,100,55,"lineNumber"],[132,24,100,55],[133,14,100,55,"columnNumber"],[133,26,100,55],[134,12,100,55],[134,19,101,15],[135,10,101,16],[136,12,101,16,"fileName"],[136,20,101,16],[136,22,101,16,"_jsxFileName"],[136,34,101,16],[137,12,101,16,"lineNumber"],[137,22,101,16],[138,12,101,16,"columnNumber"],[138,24,101,16],[139,10,101,16],[139,17,102,18],[139,18,102,19],[139,33,104,12],[139,37,104,12,"_reactJsxDevRuntime"],[139,56,104,12],[139,57,104,12,"jsxDEV"],[139,63,104,12],[139,65,104,13,"_reactNative"],[139,77,104,17],[139,78,104,17,"View"],[139,82,104,17],[140,12,104,18,"style"],[140,17,104,23],[140,19,104,25,"styles"],[140,25,104,31],[140,26,104,32,"notificationContent"],[140,45,104,52],[141,12,104,52,"children"],[141,20,104,52],[141,36,105,14],[141,40,105,14,"_reactJsxDevRuntime"],[141,59,105,14],[141,60,105,14,"jsxDEV"],[141,66,105,14],[141,68,105,15,"_reactNative"],[141,80,105,19],[141,81,105,19,"View"],[141,85,105,19],[142,14,105,20,"style"],[142,19,105,25],[142,21,105,27,"styles"],[142,27,105,33],[142,28,105,34,"notificationHeader"],[142,46,105,53],[143,14,105,53,"children"],[143,22,105,53],[143,38,106,16],[143,42,106,16,"_reactJsxDevRuntime"],[143,61,106,16],[143,62,106,16,"jsxDEV"],[143,68,106,16],[143,70,106,17,"_reactNative"],[143,82,106,21],[143,83,106,21,"Text"],[143,87,106,21],[144,16,106,22,"style"],[144,21,106,27],[144,23,106,29,"styles"],[144,29,106,35],[144,30,106,36,"notificationTitle"],[144,47,106,54],[145,16,106,54,"children"],[145,24,106,54],[145,26,106,56,"notification"],[145,38,106,68],[145,39,106,69,"title"],[146,14,106,74],[147,16,106,74,"fileName"],[147,24,106,74],[147,26,106,74,"_jsxFileName"],[147,38,106,74],[148,16,106,74,"lineNumber"],[148,26,106,74],[149,16,106,74,"columnNumber"],[149,28,106,74],[150,14,106,74],[150,21,106,81],[150,22,106,82],[150,24,107,17],[150,25,107,18,"notification"],[150,37,107,30],[150,38,107,31,"read"],[150,42,107,35],[150,59,107,39],[150,63,107,39,"_reactJsxDevRuntime"],[150,82,107,39],[150,83,107,39,"jsxDEV"],[150,89,107,39],[150,91,107,40,"_reactNative"],[150,103,107,44],[150,104,107,44,"View"],[150,108,107,44],[151,16,107,45,"style"],[151,21,107,50],[151,23,107,52,"styles"],[151,29,107,58],[151,30,107,59,"unreadDot"],[152,14,107,69],[153,16,107,69,"fileName"],[153,24,107,69],[153,26,107,69,"_jsxFileName"],[153,38,107,69],[154,16,107,69,"lineNumber"],[154,26,107,69],[155,16,107,69,"columnNumber"],[155,28,107,69],[156,14,107,69],[156,21,107,71],[156,22,107,72],[157,12,107,72],[158,14,107,72,"fileName"],[158,22,107,72],[158,24,107,72,"_jsxFileName"],[158,36,107,72],[159,14,107,72,"lineNumber"],[159,24,107,72],[160,14,107,72,"columnNumber"],[160,26,107,72],[161,12,107,72],[161,19,108,20],[161,20,108,21],[161,35,109,14],[161,39,109,14,"_reactJsxDevRuntime"],[161,58,109,14],[161,59,109,14,"jsxDEV"],[161,65,109,14],[161,67,109,15,"_reactNative"],[161,79,109,19],[161,80,109,19,"Text"],[161,84,109,19],[162,14,109,20,"style"],[162,19,109,25],[162,21,109,27,"styles"],[162,27,109,33],[162,28,109,34,"notificationMessage"],[162,47,109,54],[163,14,109,54,"children"],[163,22,109,54],[163,24,109,56,"notification"],[163,36,109,68],[163,37,109,69,"message"],[164,12,109,76],[165,14,109,76,"fileName"],[165,22,109,76],[165,24,109,76,"_jsxFileName"],[165,36,109,76],[166,14,109,76,"lineNumber"],[166,24,109,76],[167,14,109,76,"columnNumber"],[167,26,109,76],[168,12,109,76],[168,19,109,83],[168,20,109,84],[168,35,110,14],[168,39,110,14,"_reactJsxDevRuntime"],[168,58,110,14],[168,59,110,14,"jsxDEV"],[168,65,110,14],[168,67,110,15,"_reactNative"],[168,79,110,19],[168,80,110,19,"Text"],[168,84,110,19],[169,14,110,20,"style"],[169,19,110,25],[169,21,110,27,"styles"],[169,27,110,33],[169,28,110,34,"notificationTime"],[169,44,110,51],[170,14,110,51,"children"],[170,22,110,51],[170,24,110,53,"notification"],[170,36,110,65],[170,37,110,66,"time"],[171,12,110,70],[172,14,110,70,"fileName"],[172,22,110,70],[172,24,110,70,"_jsxFileName"],[172,36,110,70],[173,14,110,70,"lineNumber"],[173,24,110,70],[174,14,110,70,"columnNumber"],[174,26,110,70],[175,12,110,70],[175,19,110,77],[175,20,110,78],[176,10,110,78],[177,12,110,78,"fileName"],[177,20,110,78],[177,22,110,78,"_jsxFileName"],[177,34,110,78],[178,12,110,78,"lineNumber"],[178,22,110,78],[179,12,110,78,"columnNumber"],[179,24,110,78],[180,10,110,78],[180,17,111,18],[180,18,111,19],[181,8,111,19],[181,11,85,17,"notification"],[181,23,85,29],[181,24,85,30,"id"],[181,26,85,32],[182,10,85,32,"fileName"],[182,18,85,32],[182,20,85,32,"_jsxFileName"],[182,32,85,32],[183,10,85,32,"lineNumber"],[183,20,85,32],[184,10,85,32,"columnNumber"],[184,22,85,32],[185,8,85,32],[185,15,112,28],[185,16,113,9],[186,6,113,10],[187,8,113,10,"fileName"],[187,16,113,10],[187,18,113,10,"_jsxFileName"],[187,30,113,10],[188,8,113,10,"lineNumber"],[188,18,113,10],[189,8,113,10,"columnNumber"],[189,20,113,10],[190,6,113,10],[190,13,114,18],[190,14,114,19],[191,4,114,19],[192,6,114,19,"fileName"],[192,14,114,19],[192,16,114,19,"_jsxFileName"],[192,28,114,19],[193,6,114,19,"lineNumber"],[193,16,114,19],[194,6,114,19,"columnNumber"],[194,18,114,19],[195,4,114,19],[195,11,115,10],[195,12,115,11],[196,2,117,0],[197,2,117,1,"_s"],[197,4,117,1],[197,5,13,24,"NotificationsScreen"],[197,24,13,43],[198,4,13,43],[198,12,14,17,"useSafeAreaInsets"],[198,39,14,34],[198,40,14,34,"useSafeAreaInsets"],[198,57,14,34],[199,2,14,34],[200,2,14,34,"_c"],[200,4,14,34],[200,7,13,24,"NotificationsScreen"],[200,26,13,43],[201,2,119,0],[201,6,119,6,"styles"],[201,12,119,12],[201,15,119,15,"StyleSheet"],[201,27,119,25],[201,28,119,25,"StyleSheet"],[201,38,119,25],[201,39,119,26,"create"],[201,45,119,32],[201,46,119,33],[202,4,120,2,"container"],[202,13,120,11],[202,15,120,13],[203,6,121,4,"flex"],[203,10,121,8],[203,12,121,10],[203,13,121,11],[204,6,122,4,"backgroundColor"],[204,21,122,19],[204,23,122,21],[205,4,123,2],[205,5,123,3],[206,4,124,2,"header"],[206,10,124,8],[206,12,124,10],[207,6,125,4,"flexDirection"],[207,19,125,17],[207,21,125,19],[207,26,125,24],[208,6,126,4,"alignItems"],[208,16,126,14],[208,18,126,16],[208,26,126,24],[209,6,127,4,"justifyContent"],[209,20,127,18],[209,22,127,20],[209,37,127,35],[210,6,128,4,"paddingHorizontal"],[210,23,128,21],[210,25,128,23],[210,27,128,25],[211,6,129,4,"paddingVertical"],[211,21,129,19],[211,23,129,21],[211,25,129,23],[212,6,130,4,"backgroundColor"],[212,21,130,19],[212,23,130,21],[212,29,130,27],[213,6,131,4,"borderBottomWidth"],[213,23,131,21],[213,25,131,23],[213,26,131,24],[214,6,132,4,"borderBottomColor"],[214,23,132,21],[214,25,132,23],[215,4,133,2],[215,5,133,3],[216,4,134,2,"backButton"],[216,14,134,12],[216,16,134,14],[217,6,135,4,"width"],[217,11,135,9],[217,13,135,11],[217,15,135,13],[218,6,136,4,"height"],[218,12,136,10],[218,14,136,12],[218,16,136,14],[219,6,137,4,"borderRadius"],[219,18,137,16],[219,20,137,18],[219,22,137,20],[220,6,138,4,"backgroundColor"],[220,21,138,19],[220,23,138,21],[220,32,138,30],[221,6,139,4,"alignItems"],[221,16,139,14],[221,18,139,16],[221,26,139,24],[222,6,140,4,"justifyContent"],[222,20,140,18],[222,22,140,20],[223,4,141,2],[223,5,141,3],[224,4,142,2,"headerTitle"],[224,15,142,13],[224,17,142,15],[225,6,143,4,"fontSize"],[225,14,143,12],[225,16,143,14],[225,18,143,16],[226,6,144,4,"fontWeight"],[226,16,144,14],[226,18,144,16],[226,23,144,21],[227,6,145,4,"color"],[227,11,145,9],[227,13,145,11],[228,4,146,2],[228,5,146,3],[229,4,147,2,"markAllButton"],[229,17,147,15],[229,19,147,17],[230,6,148,4,"paddingHorizontal"],[230,23,148,21],[230,25,148,23],[230,27,148,25],[231,6,149,4,"paddingVertical"],[231,21,149,19],[231,23,149,21],[231,24,149,22],[232,6,150,4,"borderRadius"],[232,18,150,16],[232,20,150,18],[232,21,150,19],[233,6,151,4,"backgroundColor"],[233,21,151,19],[233,23,151,21],[234,4,152,2],[234,5,152,3],[235,4,153,2,"markAllText"],[235,15,153,13],[235,17,153,15],[236,6,154,4,"fontSize"],[236,14,154,12],[236,16,154,14],[236,18,154,16],[237,6,155,4,"fontWeight"],[237,16,155,14],[237,18,155,16],[237,23,155,21],[238,6,156,4,"color"],[238,11,156,9],[238,13,156,11],[239,4,157,2],[239,5,157,3],[240,4,158,2,"scrollContent"],[240,17,158,15],[240,19,158,17],[241,6,159,4,"padding"],[241,13,159,11],[241,15,159,13],[242,4,160,2],[242,5,160,3],[243,4,161,2,"notificationCard"],[243,20,161,18],[243,22,161,20],[244,6,162,4,"flexDirection"],[244,19,162,17],[244,21,162,19],[244,26,162,24],[245,6,163,4,"backgroundColor"],[245,21,163,19],[245,23,163,21],[245,29,163,27],[246,6,164,4,"padding"],[246,13,164,11],[246,15,164,13],[246,17,164,15],[247,6,165,4,"borderRadius"],[247,18,165,16],[247,20,165,18],[247,22,165,20],[248,6,166,4,"marginBottom"],[248,18,166,16],[248,20,166,18],[248,22,166,20],[249,6,167,4,"shadowColor"],[249,17,167,15],[249,19,167,17],[249,25,167,23],[250,6,168,4,"shadowOffset"],[250,18,168,16],[250,20,168,18],[251,8,168,20,"width"],[251,13,168,25],[251,15,168,27],[251,16,168,28],[252,8,168,30,"height"],[252,14,168,36],[252,16,168,38],[253,6,168,40],[253,7,168,41],[254,6,169,4,"shadowOpacity"],[254,19,169,17],[254,21,169,19],[254,25,169,23],[255,6,170,4,"shadowRadius"],[255,18,170,16],[255,20,170,18],[255,21,170,19],[256,6,171,4,"elevation"],[256,15,171,13],[256,17,171,15],[257,4,172,2],[257,5,172,3],[258,4,173,2,"notificationCardUnread"],[258,26,173,24],[258,28,173,26],[259,6,174,4,"borderLeftWidth"],[259,21,174,19],[259,23,174,21],[259,24,174,22],[260,6,175,4,"borderLeftColor"],[260,21,175,19],[260,23,175,21],[261,4,176,2],[261,5,176,3],[262,4,177,2,"iconContainer"],[262,17,177,15],[262,19,177,17],[263,6,178,4,"width"],[263,11,178,9],[263,13,178,11],[263,15,178,13],[264,6,179,4,"height"],[264,12,179,10],[264,14,179,12],[264,16,179,14],[265,6,180,4,"borderRadius"],[265,18,180,16],[265,20,180,18],[265,22,180,20],[266,6,181,4,"alignItems"],[266,16,181,14],[266,18,181,16],[266,26,181,24],[267,6,182,4,"justifyContent"],[267,20,182,18],[267,22,182,20],[267,30,182,28],[268,6,183,4,"marginRight"],[268,17,183,15],[268,19,183,17],[269,4,184,2],[269,5,184,3],[270,4,185,2,"notificationContent"],[270,23,185,21],[270,25,185,23],[271,6,186,4,"flex"],[271,10,186,8],[271,12,186,10],[272,4,187,2],[272,5,187,3],[273,4,188,2,"notificationHeader"],[273,22,188,20],[273,24,188,22],[274,6,189,4,"flexDirection"],[274,19,189,17],[274,21,189,19],[274,26,189,24],[275,6,190,4,"alignItems"],[275,16,190,14],[275,18,190,16],[275,26,190,24],[276,6,191,4,"marginBottom"],[276,18,191,16],[276,20,191,18],[277,4,192,2],[277,5,192,3],[278,4,193,2,"notificationTitle"],[278,21,193,19],[278,23,193,21],[279,6,194,4,"fontSize"],[279,14,194,12],[279,16,194,14],[279,18,194,16],[280,6,195,4,"fontWeight"],[280,16,195,14],[280,18,195,16],[280,23,195,21],[281,6,196,4,"color"],[281,11,196,9],[281,13,196,11],[281,22,196,20],[282,6,197,4,"flex"],[282,10,197,8],[282,12,197,10],[283,4,198,2],[283,5,198,3],[284,4,199,2,"unreadDot"],[284,13,199,11],[284,15,199,13],[285,6,200,4,"width"],[285,11,200,9],[285,13,200,11],[285,14,200,12],[286,6,201,4,"height"],[286,12,201,10],[286,14,201,12],[286,15,201,13],[287,6,202,4,"borderRadius"],[287,18,202,16],[287,20,202,18],[287,21,202,19],[288,6,203,4,"backgroundColor"],[288,21,203,19],[288,23,203,21],[289,4,204,2],[289,5,204,3],[290,4,205,2,"notificationMessage"],[290,23,205,21],[290,25,205,23],[291,6,206,4,"fontSize"],[291,14,206,12],[291,16,206,14],[291,18,206,16],[292,6,207,4,"color"],[292,11,207,9],[292,13,207,11],[292,22,207,20],[293,6,208,4,"marginBottom"],[293,18,208,16],[293,20,208,18],[294,4,209,2],[294,5,209,3],[295,4,210,2,"notificationTime"],[295,20,210,18],[295,22,210,20],[296,6,211,4,"fontSize"],[296,14,211,12],[296,16,211,14],[296,18,211,16],[297,6,212,4,"color"],[297,11,212,9],[297,13,212,11],[298,4,213,2],[299,2,214,0],[299,3,214,1],[299,4,214,2],[300,2,214,3],[300,6,214,3,"_c"],[300,8,214,3],[301,2,214,3,"$RefreshReg$"],[301,14,214,3],[301,15,214,3,"_c"],[301,17,214,3],[302,0,214,3],[302,3]],"functionMap":{"names":["<global>","NotificationsScreen","getIconName","getIconColor","TouchableOpacity.props.onPress","notifications.map$argument_0"],"mappings":"AAA;eCY;sBC8B;GDW;uBEE;GFW;mCGM,yBH;2BIU;SJ8B;CDI"},"hasCjsExports":false},"type":"js/module"}]} |