mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 15:09:33 +01:00
fix bottom button positon on notchless devices
This commit is contained in:
@@ -53,7 +53,10 @@ export const ContainerBottomButton = ({
|
||||
style={{
|
||||
position: 'absolute',
|
||||
right: 12,
|
||||
bottom: Platform.OS === 'ios' ? insets.bottom - 10 : insets.bottom + 12,
|
||||
bottom:
|
||||
Platform.OS === 'ios' && insets.bottom !== 0
|
||||
? insets.bottom - 10
|
||||
: insets.bottom + 12,
|
||||
zIndex: 10,
|
||||
transform: [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user