import * as React from 'react'; import { Platform, StyleProp, StyleSheet, TextStyle, TouchableWithoutFeedback, View, ViewStyle, } from 'react-native'; import color from 'color'; import Text from '../Typography/Text'; import { withTheme } from '../../core/theming'; import { white } from '../../styles/colors'; import type { $RemoveChildren } from '../../types'; type Props = $RemoveChildren & { /** * Custom color for the text. */ color?: string; /** * Text for the title. */ title: React.ReactNode; /** * Style for the title. */ titleStyle?: StyleProp; /** * Reference for the title. */ titleRef?: React.RefObject; /** * Text for the subtitle. */ subtitle?: React.ReactNode; /** * Style for the subtitle. */ subtitleStyle?: StyleProp; /** * Function to execute on press. */ onPress?: () => void; style?: StyleProp; /** * @optional */ theme: ReactNativePaper.Theme; }; /** * A component used to display a title and optional subtitle in an appbar. * *
*
* *
*
* * ## Usage * ```js * import * as React from 'react'; * import { Appbar } from 'react-native-paper'; * * const MyComponent = () => ( * * * * ); * * export default MyComponent; * ``` */ const AppbarContent = ({ color: titleColor = white, subtitle, subtitleStyle, onPress, style, titleRef, titleStyle, theme, title, ...rest }: Props) => { const { fonts } = theme; const subtitleColor = color(titleColor).alpha(0.7).rgb().string(); return ( {title} {subtitle ? ( {subtitle} ) : null} ); }; AppbarContent.displayName = 'Appbar.Content'; const styles = StyleSheet.create({ container: { flex: 1, paddingHorizontal: 12, }, title: { fontSize: Platform.OS === 'ios' ? 17 : 20, }, subtitle: { fontSize: Platform.OS === 'ios' ? 11 : 14, }, }); export default withTheme(AppbarContent); // @component-docs ignore-next-line export { AppbarContent };