diff --git a/app/mobile/src/session/Session.jsx b/app/mobile/src/session/Session.jsx
index 19b4522b..b90270ae 100644
--- a/app/mobile/src/session/Session.jsx
+++ b/app/mobile/src/session/Session.jsx
@@ -32,6 +32,7 @@ import lightSplash from 'images/session.png';
import darkSplash from 'images/darksess.png';
import { useNavigate } from 'react-router-dom';
import { getLanguageStrings } from 'constants/Strings';
+import { BlurView } from "@react-native-community/blur";
const ConversationStack = createStackNavigator();
const ProfileStack = createStackNavigator();
@@ -379,8 +380,8 @@ export function Session({ sharing, clearSharing }) {
)}
{ name == null && contactNode != null && (
- { handle }
- { contactNode }
+ { handle }
+ { contactNode }
)}
{ name == null && contactNode == null && (
@@ -486,6 +487,7 @@ export function Session({ sharing, clearSharing }) {
supportedOrientations={['portrait', 'landscape']}
>
+
{ ringing }
diff --git a/app/mobile/src/session/Session.styled.js b/app/mobile/src/session/Session.styled.js
index cee1e22e..9f024fc5 100644
--- a/app/mobile/src/session/Session.styled.js
+++ b/app/mobile/src/session/Session.styled.js
@@ -148,10 +148,15 @@ export const styles = StyleSheet.create({
height: '100%',
alignItems: 'center',
justifyContent: 'center',
- backgroundColor: 'rgba(52, 52, 52, 0.8)'
+ },
+ ringText: {
+ color: Colors.text,
},
ringFrame: {
- backgroundColor: Colors.areaBase,
+ position: 'absolute',
+ backgroundColor: Colors.modalBase,
+ borderColor: Colors.modalBorder,
+ borderWidth: 1,
padding: 16,
width: '90%',
maxWidth: 400,
@@ -168,6 +173,7 @@ export const styles = StyleSheet.create({
flexGrow: 1,
paddingLeft: 8,
paddingRight: 8,
+ color: Colors.text,
},
ringIgnore: {
borderWidth: 1,