fix: query status bar height on Android, closes #943 (#947)

This commit is contained in:
Huang Xin 2025-04-23 20:01:37 +08:00 committed by GitHub
parent ad551a04a1
commit 172ab382bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 148 additions and 20 deletions

View file

@ -43,4 +43,8 @@ impl<R: Runtime> NativeBridge<R> {
) -> crate::Result<SetSystemUIVisibilityResponse> {
Err(crate::Error::UnsupportedPlatformError)
}
pub fn get_status_bar_height(&self) -> crate::Result<GetStatusBarHeightResponse> {
Err(crate::Error::UnsupportedPlatformError)
}
}