mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-08-26 03:24:08 +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();
|
|
}
|
|
}
|