agora-appbuilder-core 4.0.26-beta-5 → 4.0.26-beta-6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.0.26-beta-5",
3
+ "version": "4.0.26-beta-6",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -76,8 +76,8 @@ const DefaultConfig = {
76
76
  CHAT_ORG_NAME: '',
77
77
  CHAT_APP_NAME: '',
78
78
  CHAT_URL: '',
79
- CLI_VERSION: '3.0.26-beta-5',
80
- CORE_VERSION: '4.0.26-beta-5',
79
+ CLI_VERSION: '3.0.26-beta-6',
80
+ CORE_VERSION: '4.0.26-beta-6',
81
81
  DISABLE_LANDSCAPE_MODE: false,
82
82
  };
83
83
 
@@ -434,7 +434,17 @@ export const RecordingStatusToolbarItem = () => {
434
434
  const {isRecordingActive} = useRecording();
435
435
  return isRecordingActive ? (
436
436
  <ToolbarItem>
437
- <RecordingInfo recordingLabel={recordingLabel} />
437
+ <View
438
+ style={{
439
+ width: 45,
440
+ height: 35,
441
+ justifyContent: 'center',
442
+ alignItems: 'center',
443
+ alignSelf: 'center',
444
+ zIndex: isWebInternal() ? 3 : 0,
445
+ }}>
446
+ <RecordingInfo recordingLabel={recordingLabel} />
447
+ </View>
438
448
  </ToolbarItem>
439
449
  ) : (
440
450
  <></>