mirror of https://github.com/jitsi/jitsi-meet
parent
2b1cb75e40
commit
71edea8aac
@ -0,0 +1,3 @@ |
||||
// @flow
|
||||
|
||||
export * from './native'; |
@ -0,0 +1,3 @@ |
||||
// @flow
|
||||
|
||||
export * from './web'; |
@ -1,3 +1,3 @@ |
||||
export { default as LiveStreamButton } from './LiveStreamButton'; |
||||
export { default as StartLiveStreamDialog } from './StartLiveStreamDialog'; |
||||
export { default as StopLiveStreamDialog } from './StopLiveStreamDialog'; |
||||
// @flow
|
||||
|
||||
export * from './_'; |
||||
|
@ -0,0 +1,5 @@ |
||||
// @flow
|
||||
|
||||
export { default as LiveStreamButton } from './LiveStreamButton'; |
||||
export { default as StartLiveStreamDialog } from './StartLiveStreamDialog'; |
||||
export { default as StopLiveStreamDialog } from './StopLiveStreamDialog'; |
@ -1,6 +1,10 @@ |
||||
// @flow
|
||||
|
||||
import { BoxModel, ColorPalette, createStyleSheet } from '../../../base/styles'; |
||||
import { |
||||
BoxModel, |
||||
ColorPalette, |
||||
createStyleSheet |
||||
} from '../../../../base/styles'; |
||||
|
||||
/** |
||||
* Opacity of the TouchableHighlight. |
@ -0,0 +1,5 @@ |
||||
// @flow
|
||||
|
||||
export { default as LiveStreamButton } from './LiveStreamButton'; |
||||
export { default as StartLiveStreamDialog } from './StartLiveStreamDialog'; |
||||
export { default as StopLiveStreamDialog } from './StopLiveStreamDialog'; |
@ -0,0 +1,3 @@ |
||||
// @flow
|
||||
|
||||
export * from './native'; |
@ -0,0 +1,3 @@ |
||||
// @flow
|
||||
|
||||
export * from './web'; |
@ -1,3 +1,3 @@ |
||||
export { default as RecordButton } from './RecordButton'; |
||||
export { default as StartRecordingDialog } from './StartRecordingDialog'; |
||||
export { default as StopRecordingDialog } from './StopRecordingDialog'; |
||||
// @flow
|
||||
|
||||
export * from './_'; |
||||
|
@ -0,0 +1,4 @@ |
||||
// @flow
|
||||
|
||||
export { default as RecordButton } from './RecordButton'; |
||||
export { default as StopRecordingDialog } from './StopRecordingDialog'; |
@ -0,0 +1,4 @@ |
||||
// @flow
|
||||
|
||||
export { default as RecordButton } from './RecordButton'; |
||||
export { default as StopRecordingDialog } from './StopRecordingDialog'; |
@ -0,0 +1,3 @@ |
||||
// @flow
|
||||
|
||||
export * from './native'; |
@ -0,0 +1,3 @@ |
||||
// @flow
|
||||
|
||||
export * from './web'; |
@ -1,12 +1,5 @@ |
||||
export { |
||||
LiveStreamButton, |
||||
StartLiveStreamDialog, |
||||
StopLiveStreamDialog |
||||
} from './LiveStream'; |
||||
export { |
||||
RecordButton, |
||||
StartRecordingDialog, |
||||
StopRecordingDialog |
||||
} from './Recording'; |
||||
export { default as RecordingLabel } from './RecordingLabel'; |
||||
export { default as RecordingExpandedLabel } from './RecordingExpandedLabel'; |
||||
// @flow
|
||||
|
||||
export * from './_'; |
||||
export * from './LiveStream'; |
||||
export * from './Recording'; |
||||
|
@ -0,0 +1,4 @@ |
||||
// @flow
|
||||
|
||||
export { default as RecordingExpandedLabel } from './RecordingExpandedLabel'; |
||||
export { default as RecordingLabel } from './RecordingLabel'; |
@ -1,6 +1,6 @@ |
||||
// @flow
|
||||
|
||||
import { ColorPalette, createStyleSheet } from '../../base/styles'; |
||||
import { ColorPalette, createStyleSheet } from '../../../base/styles'; |
||||
|
||||
export const LIVE_LABEL_COLOR = ColorPalette.blue; |
||||
export const REC_LABEL_COLOR = ColorPalette.red; |
@ -0,0 +1,3 @@ |
||||
// @flow
|
||||
|
||||
export { default as RecordingLabel } from './RecordingLabel'; |
Loading…
Reference in new issue