mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-09-22 06:34:07 +00:00
11 lines
381 B
Dart
11 lines
381 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
class ImageEditorProvider with ChangeNotifier, DiagnosticableTreeMixin {
|
|
bool _someTextViewIsAlreadyEditing = false;
|
|
bool get someTextViewIsAlreadyEditing => _someTextViewIsAlreadyEditing;
|
|
|
|
Future<void> updateSomeTextViewIsAlreadyEditing(bool update) async {
|
|
_someTextViewIsAlreadyEditing = update;
|
|
notifyListeners();
|
|
}
|
|
}
|