2026-07-02 14:34:19 +05:30

35 lines
870 B
TypeScript

import { StyleSheet } from 'react-native';
import { typography, spacing } from '@theme';
export const getStyles = (colors: any) =>
StyleSheet.create({
container: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
paddingHorizontal: spacing.lg,
paddingVertical: spacing.md,
backgroundColor: colors.background,
borderBottomWidth: 1,
borderBottomColor: colors.border,
},
leftContainer: {
flexDirection: 'row',
alignItems: 'center',
flex: 1,
},
backButton: {
marginRight: spacing.md,
padding: spacing.xs,
},
title: {
fontSize: typography.fontSize.lg,
fontWeight: typography.fontWeight.semibold,
color: colors.text,
},
rightContainer: {
justifyContent: 'center',
alignItems: 'flex-end',
},
});