layout update supporting better dynamic resizing, lookandfeel update, ios support

This commit is contained in:
essej
2022-04-11 13:23:10 -04:00
parent 8c4a20ecd6
commit 2084782a79
14 changed files with 3660 additions and 220 deletions

View File

@ -19,9 +19,10 @@
#import <Cocoa/Cocoa.h>
void getSafeAreaInsets(void * component, float & top, float & bottom, float & left, float & right)
void getSafeAreaInsets(void * component, float & top, float & bottom, float & left, float & right, int & notchPos)
{
top = bottom = left = right = 0;
notchPos = 0;
}