Skip to content

Commit 338df21

Browse files
authored
refactor: Rename style to absoluteWithNoBottom in ScreenStackItem (#3461)
## Description As discussed in #3454 (comment) , this name more precisely describes the style. ## Changes - Rename ## Test code and steps to reproduce N/A ## Checklist - [x] Included code example that can be used to test this change - [x] Ensured that CI passes
1 parent 910978b commit 338df21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ScreenStackItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ function getPositioningStyle(
214214
}
215215

216216
if (isIOS) {
217-
return styles.absolute;
217+
return styles.absoluteWithNoBottom;
218218
}
219219

220220
// Other platforms, tested reliably only on Android
@@ -272,7 +272,7 @@ const styles = StyleSheet.create({
272272
container: {
273273
flex: 1,
274274
},
275-
absolute: {
275+
absoluteWithNoBottom: {
276276
position: 'absolute',
277277
top: 0,
278278
start: 0,

0 commit comments

Comments
 (0)