78 lines
1.8 KiB
JavaScript
78 lines
1.8 KiB
JavaScript
|
/**
|
||
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*
|
||
|
* @flow strict-local
|
||
|
* @format
|
||
|
*/
|
||
|
|
||
|
import type {Node} from 'react';
|
||
|
|
||
|
import ImageBackground from '../../Image/ImageBackground';
|
||
|
import StyleSheet from '../../StyleSheet/StyleSheet';
|
||
|
import Text from '../../Text/Text';
|
||
|
import useColorScheme from '../../Utilities/useColorScheme';
|
||
|
import Colors from './Colors';
|
||
|
import HermesBadge from './HermesBadge';
|
||
|
import React from 'react';
|
||
|
|
||
|
const Header = (): Node => {
|
||
|
const isDarkMode = useColorScheme() === 'dark';
|
||
|
return (
|
||
|
<ImageBackground
|
||
|
accessibilityRole="image"
|
||
|
testID="new-app-screen-header"
|
||
|
source={require('./logo.png')}
|
||
|
style={[
|
||
|
styles.background,
|
||
|
{
|
||
|
backgroundColor: isDarkMode ? Colors.darker : Colors.lighter,
|
||
|
},
|
||
|
]}
|
||
|
imageStyle={styles.logo}>
|
||
|
<HermesBadge />
|
||
|
<Text
|
||
|
style={[
|
||
|
styles.text,
|
||
|
{
|
||
|
color: isDarkMode ? Colors.white : Colors.black,
|
||
|
},
|
||
|
]}>
|
||
|
Welcome to
|
||
|
{'\n'}
|
||
|
React Native
|
||
|
</Text>
|
||
|
</ImageBackground>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
const styles = StyleSheet.create({
|
||
|
background: {
|
||
|
paddingBottom: 40,
|
||
|
paddingTop: 96,
|
||
|
paddingHorizontal: 32,
|
||
|
},
|
||
|
logo: {
|
||
|
opacity: 0.2,
|
||
|
overflow: 'visible',
|
||
|
resizeMode: 'cover',
|
||
|
/*
|
||
|
* These negative margins allow the image to be offset similarly across screen sizes and component sizes.
|
||
|
*
|
||
|
* The source logo.png image is 512x512px, so as such, these margins attempt to be relative to the
|
||
|
* source image's size.
|
||
|
*/
|
||
|
marginLeft: -128,
|
||
|
marginBottom: -192,
|
||
|
},
|
||
|
text: {
|
||
|
fontSize: 40,
|
||
|
fontWeight: '700',
|
||
|
textAlign: 'center',
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export default Header;
|