mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-09 07:28:14 -07:00
feat: Properly recognize the current input method
This commit is contained in:
parent
561351dd09
commit
8b9bc04380
7 changed files with 154 additions and 36 deletions
|
|
@ -86,7 +86,10 @@ class AdaptiveLayoutModel {
|
|||
@override
|
||||
bool operator ==(covariant AdaptiveLayoutModel other) {
|
||||
if (identical(this, other)) return true;
|
||||
return other.viewSize == viewSize && other.layoutMode == layoutMode && other.sideBarWidth == sideBarWidth;
|
||||
return other.viewSize == viewSize &&
|
||||
other.layoutMode == layoutMode &&
|
||||
other.sideBarWidth == sideBarWidth &&
|
||||
other.inputDevice == inputDevice;
|
||||
}
|
||||
|
||||
@override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue