2019-04-09 13:05:20 +02:00
|
|
|
// @flow
|
|
|
|
|
|
2018-05-23 14:30:22 +02:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
2021-11-23 15:06:59 +01:00
|
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
|
|
|
|
|
2017-11-24 16:23:40 +01:00
|
|
|
|
|
|
|
|
/**
|
2019-04-09 17:53:12 +02:00
|
|
|
* The React {@code Component} styles of the overlay feature.
|
2017-11-24 16:23:40 +01:00
|
|
|
*/
|
2019-04-09 17:53:12 +02:00
|
|
|
export default {
|
2017-11-24 16:23:40 +01:00
|
|
|
/**
|
|
|
|
|
* Style for a backdrop overlay covering the screen the the overlay is
|
|
|
|
|
* rendered.
|
|
|
|
|
*/
|
|
|
|
|
container: {
|
2018-05-23 14:30:22 +02:00
|
|
|
...StyleSheet.absoluteFillObject,
|
2022-03-17 16:13:58 +02:00
|
|
|
backgroundColor: BaseTheme.palette.ui00
|
2019-04-09 17:53:12 +02:00
|
|
|
},
|
|
|
|
|
|
2019-03-06 17:28:59 +01:00
|
|
|
safeContainer: {
|
|
|
|
|
flex: 1
|
2017-11-24 16:23:40 +01:00
|
|
|
}
|
2019-04-09 17:53:12 +02:00
|
|
|
};
|