Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ TopAppBar - Add testID #107

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/components/topAppBar/TopAppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ export interface Props {
icon?: Icon;
onBack?: () => void;
style?: ViewStyle;
testID?: string;
}

export const TopAppBar = ({ size = 'small', title, icon, onBack, style }: Props) => {
export const TopAppBar = ({ size = 'small', title, icon, onBack, style, testID }: Props) => {
const theme = useTheme();
const styles = StyleSheet.create({
button: {
Expand All @@ -46,7 +47,7 @@ export const TopAppBar = ({ size = 'small', title, icon, onBack, style }: Props)
return theme.sw.colors.neutral[600];
};
return (
<Appbar.Header mode={size} style={styles.header} statusBarHeight={0}>
<Appbar.Header mode={size} style={styles.header} statusBarHeight={0} testID={testID}>
{onBack !== undefined && (
<Appbar.BackAction
style={styles.button}
Expand Down
Loading