Remove obsolate PlatformElements.native.js

This commit is contained in:
zbettenbuk 2018-03-06 17:58:26 +01:00 committed by Lyubo Marinov
parent 7da26042b3
commit 357f173e85
4 changed files with 9 additions and 52 deletions

View File

@ -1,49 +0,0 @@
import { ColorPalette } from './ColorPalette';
import { BoxModel } from './BoxModel';
import {
createStyleSheet
} from '../../functions';
export const PlatformElements = createStyleSheet({
/**
* Platform specific header button (e.g. back, menu...etc).
*/
headerButton: {
alignSelf: 'center',
color: ColorPalette.white,
fontSize: 26,
paddingRight: 22
},
/**
* Generic style for a label placed in the header.
*/
headerText: {
color: ColorPalette.white,
fontSize: 20
},
/**
* An empty padded view to place components.
*/
paddedView: {
padding: BoxModel.padding
},
/**
* The topmost level element of a page.
*/
page: {
alignItems: 'stretch',
bottom: 0,
flex: 1,
flexDirection: 'column',
left: 0,
overflow: 'hidden',
position: 'absolute',
right: 0,
top: 0
}
});

View File

@ -1,3 +1,2 @@
export * from './BoxModel';
export * from './ColorPalette';
export * from './PlatformElements';

View File

@ -16,7 +16,7 @@ import { Icon } from '../../base/font-icons';
import { MEDIA_TYPE } from '../../base/media';
import { updateProfile } from '../../base/profile';
import { LoadingIndicator, Header, Text } from '../../base/react';
import { ColorPalette, PlatformElements } from '../../base/styles';
import { ColorPalette } from '../../base/styles';
import {
createDesiredLocalTracks,
destroyLocalTracks
@ -114,7 +114,7 @@ class WelcomePage extends AbstractWelcomePage {
</View>
</Header>
<SafeAreaView style = { styles.roomContainer } >
<View style = { PlatformElements.paddedView } >
<View style = { styles.joinControls } >
<TextInput
accessibilityLabel = { 'Input room name.' }
autoCapitalize = 'none'

View File

@ -131,6 +131,13 @@ export default createStyleSheet({
paddingTop: 10
},
/**
* A view that contains the field and hint box.
*/
joinControls: {
padding: BoxModel.padding
},
/**
* The style of the top-level container/{@code View} of
* {@code LocalVideoTrackUnderlay}.