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