Skip to content

Commit

Permalink
fix: call controls on ipad landscape positioning (#1593)
Browse files Browse the repository at this point in the history
Fixes the positioning of the call controls in the dogfood app for
tablets in landscape orientation.
  • Loading branch information
kristian-mkd authored Nov 25, 2024
1 parent 63c0330 commit dbefa31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sample-apps/react-native/dogfood/src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const useCustomTheme = (mode: ThemeMode): DeepPartial<Theme> => {
};

const callContent: DeepPartial<Theme['callContent']> = {
container: { paddingTop: 0, paddingBottom: 0 },
container: { paddingTop: 0, paddingBottom: 0, flexDirection: 'column' },
};

const { height, width } = Dimensions.get('window');
Expand Down

0 comments on commit dbefa31

Please sign in to comment.