Pull up `TextEditingDeltaHistoryManager` to drop redundancy (#1306)

pull/1311/head
Brett Morgan 3 years ago committed by GitHub
parent addafa93ec
commit 77cf69097a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -303,6 +303,9 @@ class _MyHomePageState extends State<MyHomePage> {
_updateToggleButtonsStateOnButtonPressed,
updateToggleButtonStateOnSelectionChanged:
_updateToggleButtonsStateOnSelectionChanged,
child: TextEditingDeltaHistoryManager(
history: _textEditingDeltaHistory,
updateHistoryOnInput: _updateTextEditingDeltaHistory,
child: Column(
children: [
Padding(
@ -325,8 +328,8 @@ class _MyHomePageState extends State<MyHomePage> {
manager.toggleButtonsState
.contains(ToggleButtonsState.underline),
],
onPressed: (index) =>
manager.updateToggleButtonsOnButtonPressed(index),
onPressed: (index) => manager
.updateToggleButtonsOnButtonPressed(index),
children: const [
Icon(Icons.format_bold),
Icon(Icons.format_italic),
@ -340,9 +343,6 @@ class _MyHomePageState extends State<MyHomePage> {
Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 35.0),
child: TextEditingDeltaHistoryManager(
history: _textEditingDeltaHistory,
updateHistoryOnInput: _updateTextEditingDeltaHistory,
child: BasicTextField(
controller: _replacementTextEditingController,
style: const TextStyle(
@ -351,15 +351,11 @@ class _MyHomePageState extends State<MyHomePage> {
),
),
),
),
Expanded(
child: Column(
children: [
_buildTextEditingDeltaViewHeader(),
Expanded(
child: TextEditingDeltaHistoryManager(
history: _textEditingDeltaHistory,
updateHistoryOnInput: _updateTextEditingDeltaHistory,
child: Builder(
builder: (innerContext) {
final TextEditingDeltaHistoryManager manager =
@ -381,7 +377,6 @@ class _MyHomePageState extends State<MyHomePage> {
},
),
),
),
const SizedBox(height: 10),
],
),
@ -391,6 +386,7 @@ class _MyHomePageState extends State<MyHomePage> {
),
),
),
),
);
}
}

@ -18,7 +18,8 @@ class TextEditingDeltaHistoryManager extends InheritedWidget {
static TextEditingDeltaHistoryManager of(BuildContext context) {
final TextEditingDeltaHistoryManager? result = context
.dependOnInheritedWidgetOfExactType<TextEditingDeltaHistoryManager>();
assert(result != null, 'No ToggleButtonsStateManager found in context');
assert(
result != null, 'No TextEditingDeltaHistoryManager found in context');
return result!;
}

Loading…
Cancel
Save