mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-15 17:37:47 +00:00
16 lines
238 B
JavaScript
16 lines
238 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
|
|
/**
|
|
* Make video element fill its container.
|
|
*/
|
|
const video = {
|
|
flex: 1
|
|
};
|
|
|
|
/**
|
|
* Native-specific styles for media components.
|
|
*/
|
|
export const styles = StyleSheet.create({
|
|
video
|
|
});
|