mattermost-mobile/app/components/settings/container.tsx
Daniel Espino García e0992c0bf6
Add test notification tool (#8271)
* Add test notification menu

* Reduce the minimum version for testing purposes

* Address feedback

* Add missing strings

* Address feedback

* Fix snapshots

* Bump version limit and use correct link

* Fix tests

* Fix URL issues
2024-11-11 10:22:57 +01:00

51 lines
1.4 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React from 'react';
import {ScrollView} from 'react-native';
import {type Edge, SafeAreaView} from 'react-native-safe-area-context';
import {useTheme} from '@context/theme';
import {makeStyleSheetFromTheme} from '@utils/theme';
const edges: Edge[] = ['left', 'right', 'bottom'];
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
return {
container: {
flex: 1,
backgroundColor: theme.centerChannelBg,
},
contentContainerStyle: {
marginTop: 8,
flexGrow: 1,
},
};
});
type SettingContainerProps = {
children: React.ReactNode;
testID?: string;
}
const SettingContainer = ({children, testID}: SettingContainerProps) => {
const theme = useTheme();
const styles = getStyleSheet(theme);
return (
<SafeAreaView
edges={edges}
style={styles.container}
testID={`${testID}.screen`}
>
<ScrollView
contentContainerStyle={styles.contentContainerStyle}
alwaysBounceVertical={false}
testID={`${testID}.scroll_view`}
>
{children}
</ScrollView>
</SafeAreaView>
);
};
export default SettingContainer;