Description
Package Version
super_editor, GitHub, stable branch
User Info
coneno GmbH, QuikFlow
To Reproduce
Steps to reproduce the behavior:
- Select the colored text
Minimal Reproduction Code
Minimal, Runnable Code Sample
import 'package:flutter/material.dart';
import 'package:super_editor/super_editor.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatefulWidget {
const MainApp({super.key});
@override
State<MainApp> createState() => _MainAppState();
}
class _MainAppState extends State<MainApp> {
static const _colorAttribution = ColorAttribution(Colors.red);
final _document = MutableDocument(nodes: [
ParagraphNode(
id: Editor.createNodeId(),
text: AttributedText(
'Hello, world!',
AttributedSpans(attributions: const [
SpanMarker(attribution: _colorAttribution, offset: 0, markerType: SpanMarkerType.start),
SpanMarker(attribution: _colorAttribution, offset: 4, markerType: SpanMarkerType.end),
])),
),
]);
final _composer = MutableDocumentComposer();
late final Editor _editor;
@override
void initState() {
super.initState();
_editor = createDefaultDocumentEditor(document: _document, composer: _composer);
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: SuperEditor(
editor: _editor,
document: _document,
composer: _composer,
stylesheet: defaultStylesheet.copyWith(
selectedTextColorStrategy: ({required originalTextColor, required selectionHighlightColor}) =>
originalTextColor,
),
),
),
),
);
}
}
Actual behavior
The selectedTextColorStrategy
, which just returns the originalTextColor
, returns the text color as if there were no ColorAttribution
s.
Expected behavior
The originalTextColor
is provided with the ColorAttributions applied so that it reflects the actually visible color to the user and can be correctly modified to stay visible with regard to the selectionHighlightColor
. Alternatively, the Attributions should be made available in this function as a parameter, so that it can itself implement the desired behavior.
Platform
macOS
Flutter version
Flutter 3.22.2 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 761747bfc5 (7 days ago) • 2024-06-05 22:15:13 +0200
Engine • revision edd8546116
Tools • Dart 3.4.3 • DevTools 2.34.3