import * as React from "react"; import { Platform, StyleProp, StyleSheet, TextStyle, TouchableWithoutFeedback, View, ViewStyle, } from "react-native"; import color from "color"; import Text from "../Text"; import { white } from "../theme/colors"; import type { $RemoveChildren } from "../types"; import { DefaultTheme, ThemeContext } from "styled-components"; 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?: DefaultTheme; }; /** * 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-simple-elements/components/Appbar'; * * const MyComponent = () => ( * * * * ); * * export default MyComponent; * ``` */ const AppbarContent = ({ color: titleColor = white, subtitle, subtitleStyle, onPress, style, titleRef, titleStyle, title, ...rest }: Props) => { const theme = React.useContext(ThemeContext); 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 AppbarContent; // @component-docs ignore-next-line const AppbarContentWithTheme = AppbarContent; // @component-docs ignore-next-line export { AppbarContentWithTheme as AppbarContent };