From ce89b2fae14bea9b534cd5f8de843f3e6d5c2f05 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 5 May 2023 00:41:31 -0500 Subject: [PATCH] Add account information to the top of settings (#583) --- src/view/screens/Settings.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/view/screens/Settings.tsx b/src/view/screens/Settings.tsx index 35c7f455..6ec263c5 100644 --- a/src/view/screens/Settings.tsx +++ b/src/view/screens/Settings.tsx @@ -152,6 +152,19 @@ export const SettingsScreen = withAuthRequired( style={[s.hContentRegion]} contentContainerStyle={!isDesktopWeb && pal.viewLight} scrollIndicatorInsets={{right: 1}}> + + + Account + + + + Email:{' '} + + {store.session.currentSession.email} + + + + Signed in as @@ -451,6 +464,10 @@ const styles = StyleSheet.create({ paddingHorizontal: 18, paddingBottom: 6, }, + infoLine: { + paddingHorizontal: 18, + paddingBottom: 6, + }, profile: { flexDirection: 'row', marginVertical: 6,