mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
* refactor out FormattingToolbar and TextEditingDeltaHistoryView from main` * replace togglebuttonstatemanager and texteditingdeltahistorymanager with appstatemanager * fix up tests * clean up * Add ReplacementTextEditingController to AppState * formatting * `dart format` Co-authored-by: Renzo Olivares <roliv@google.com> Co-authored-by: Brett Morgan <brettmorgan@google.com>
28 lines
672 B
Dart
28 lines
672 B
Dart
import 'package:flutter/widgets.dart';
|
|
|
|
import 'app_state.dart';
|
|
|
|
class AppStateManager extends InheritedWidget {
|
|
const AppStateManager({
|
|
super.key,
|
|
required super.child,
|
|
required AppState state,
|
|
}) : _appState = state;
|
|
|
|
static AppStateManager of(BuildContext context) {
|
|
final AppStateManager? result =
|
|
context.dependOnInheritedWidgetOfExactType<AppStateManager>();
|
|
assert(result != null, 'No AppStateManager found in context');
|
|
return result!;
|
|
}
|
|
|
|
final AppState _appState;
|
|
|
|
AppState get appState => _appState;
|
|
|
|
@override
|
|
bool updateShouldNotify(AppStateManager oldWidget) {
|
|
return appState != oldWidget.appState;
|
|
}
|
|
}
|