2016-10-05 14:36:59 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
/**
|
2017-06-10 22:50:42 +00:00
|
|
|
* Make {@code Video} fill its container.
|
2016-10-05 14:36:59 +00:00
|
|
|
*/
|
|
|
|
const video = {
|
|
|
|
flex: 1
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2017-06-10 22:50:42 +00:00
|
|
|
* The styles of the feature base/media.
|
2016-10-05 14:36:59 +00:00
|
|
|
*/
|
2017-06-10 22:50:42 +00:00
|
|
|
export default StyleSheet.create({
|
2016-10-05 14:36:59 +00:00
|
|
|
video
|
|
|
|
});
|