fix tags panel may overscroll on iOS

This commit is contained in:
2023-09-16 21:46:03 +08:00
parent f7475cbced
commit 24f9baa7dc
7 changed files with 27 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ bool get isDesktop =>
!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS);
bool get isWindows => !kIsWeb && Platform.isWindows;
bool get isAndroid => !kIsWeb && Platform.isAndroid;
bool get isIOS => !kIsWeb && Platform.isIOS;
String? getFilenameFromContentDisposition(String? contentDisposition) {
if (contentDisposition == null) {