mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-04-19 04:10:17 +00:00
17 lines
285 B
JavaScript
17 lines
285 B
JavaScript
// @flow
|
|
|
|
import { ColorSchemeRegistry, schemeColor } from '../../color-scheme';
|
|
|
|
export default {
|
|
safeArea: {
|
|
flex: 1
|
|
}
|
|
};
|
|
|
|
ColorSchemeRegistry.register('Modal', {
|
|
page: {
|
|
alignItems: 'stretch',
|
|
backgroundColor: schemeColor('background')
|
|
}
|
|
});
|