forked from Ivasoft/mattermost-mobile
* feat: Channel notification preferences * feedback review * use button color for the icon
51 lines
1.3 KiB
TypeScript
51 lines
1.3 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 {Edge, SafeAreaView} from 'react-native-safe-area-context';
|
|
|
|
import {useTheme} from '@context/theme';
|
|
import {makeStyleSheetFromTheme} from '@utils/theme';
|
|
|
|
const edges: Edge[] = ['left', 'right'];
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: theme.centerChannelBg,
|
|
},
|
|
contentContainerStyle: {
|
|
marginTop: 8,
|
|
},
|
|
};
|
|
});
|
|
|
|
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;
|