diff --git a/examples/bot-ready-signalling/client/react-native/src/App.js b/examples/bot-ready-signalling/client/react-native/src/App.js
index 2d07eca1e..3f56904dc 100644
--- a/examples/bot-ready-signalling/client/react-native/src/App.js
+++ b/examples/bot-ready-signalling/client/react-native/src/App.js
@@ -86,20 +86,20 @@ const CallScreen = () => {
Status: {connectionStatus}
-
-
+
Debug Info
-
-
- {logs.map((logEntry, index) => (
- {logEntry}
- ))}
-
-
+
+ {logs.map((logEntry, index) => (
+ {logEntry}
+ ))}
+
@@ -108,13 +108,13 @@ const CallScreen = () => {
const styles = StyleSheet.create({
safeArea: { flex: 1, backgroundColor: '#f0f0f0', padding: 20 },
- container: { flex: 1, maxWidth: 1200, margin: 'auto' },
+ container: { flex: 1, margin: 20 },
statusBar: { flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center', padding: 10, backgroundColor: '#fff', borderRadius: 8, marginBottom: 20 },
status: { fontWeight: 'bold' },
controls: { flexDirection: 'row', gap: 10 },
- debugPanel: { backgroundColor: '#fff', borderRadius: 8, padding: 20 },
+ debugPanel: { height: '80%', backgroundColor: '#fff', borderRadius: 8, padding: 20},
debugTitle: { fontSize: 16, fontWeight: 'bold' },
- debugLog: { height: 200, overflow: 'scroll', backgroundColor: '#f8f8f8', padding: 10, borderRadius: 4, fontFamily: 'monospace', fontSize: 12, lineHeight: 1.4 },
+ debugLog: { height: '100%', overflow: 'scroll', backgroundColor: '#f8f8f8', padding: 10, borderRadius: 4, fontFamily: 'monospace', fontSize: 12, lineHeight: 1.4 },
});
export default CallScreen;