2017-11-07 14:28:08 +00:00
|
|
|
import { createStyleSheet } from '../../styles';
|
2017-10-13 16:13:46 +00:00
|
|
|
|
|
|
|
/**
|
2018-02-06 18:14:05 +00:00
|
|
|
* The styles of the feature base/responsive-ui.
|
2017-10-13 16:13:46 +00:00
|
|
|
*/
|
|
|
|
export default createStyleSheet({
|
|
|
|
/**
|
2018-02-02 12:21:14 +00:00
|
|
|
* The style of {@link DimensionsDetector} used on react-native.
|
2017-10-13 16:13:46 +00:00
|
|
|
*/
|
2018-02-02 12:21:14 +00:00
|
|
|
dimensionsDetector: {
|
2017-10-13 16:13:46 +00:00
|
|
|
alignSelf: 'stretch',
|
|
|
|
flex: 1
|
2017-11-07 14:28:08 +00:00
|
|
|
}
|
2017-10-13 16:13:46 +00:00
|
|
|
});
|