From 62a4e9aed12480e3fe6743d53bc537cf27bad79e Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 2 Sep 2022 09:30:21 -0500 Subject: Add accounts menu to shell --- src/view/shell/mobile/accounts-menu.tsx | 89 +++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 src/view/shell/mobile/accounts-menu.tsx (limited to 'src/view/shell/mobile/accounts-menu.tsx') diff --git a/src/view/shell/mobile/accounts-menu.tsx b/src/view/shell/mobile/accounts-menu.tsx new file mode 100644 index 000000000..e3b61ce42 --- /dev/null +++ b/src/view/shell/mobile/accounts-menu.tsx @@ -0,0 +1,89 @@ +import React from 'react' +import { + Image, + StyleSheet, + Text, + TouchableOpacity, + TouchableWithoutFeedback, + View, +} from 'react-native' +import RootSiblings from 'react-native-root-siblings' +import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' +import {AVIS} from '../../lib/assets' +import {s, colors} from '../../lib/styles' + +export function createAccountsMenu(): RootSiblings { + const onPressItem = (_index: number) => { + sibling.destroy() + } + const onOuterPress = () => sibling.destroy() + const sibling = new RootSiblings( + ( + <> + + + + + onPressItem(0)}> + + Alice + + onPressItem(0)}> + + New Account + + + + ), + ) + return sibling +} + +const styles = StyleSheet.create({ + bg: { + position: 'absolute', + top: 0, + right: 0, + bottom: 0, + left: 0, + backgroundColor: '#000', + opacity: 0.1, + }, + menu: { + position: 'absolute', + left: 4, + top: 70, + backgroundColor: '#fff', + borderRadius: 14, + opacity: 1, + paddingVertical: 2, + }, + menuItem: { + flexDirection: 'row', + alignItems: 'center', + paddingVertical: 8, + paddingLeft: 10, + paddingRight: 30, + }, + menuItemBorder: { + borderTopWidth: 1, + borderTopColor: colors.gray1, + }, + avi: { + width: 28, + height: 28, + marginRight: 8, + borderRadius: 14, + }, + icon: { + marginLeft: 6, + marginRight: 6, + }, + label: { + fontSize: 16, + }, +}) -- cgit 1.4.1