Skip to content
Draft
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
4 changes: 4 additions & 0 deletions src/components/Appbar/Appbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,10 @@ const styles = StyleSheet.create({
columnContainer: {
flexDirection: 'column',
flex: 1,
// Stretch to the Appbar's fixed `modeAppbarHeight` instead of being sized
// to content. Without this the column can exceed the header height and the
// title gets clipped on iOS, where `Surface` renders a fixed-size layer.
alignSelf: 'stretch',
paddingTop: 8,
},
centerAlignedContainer: {
Expand Down
Loading