mirror of
https://github.com/openfoodfacts/smooth-app.git
synced 2025-08-06 18:25:11 +08:00
6 lines
169 B
Dart
6 lines
169 B
Dart
import 'package:flutter/widgets.dart';
|
|
|
|
extension KeyboardContextExtention on BuildContext {
|
|
bool get keyboardVisible => MediaQuery.viewInsetsOf(this).bottom > 0.0;
|
|
}
|