@ -4,10 +4,12 @@ import 'package:flutter/material.dart';
import ' package:flutter/services.dart ' ;
import ' package:flutter_quill/flutter_quill.dart ' ;
import ' package:flutter_quill/flutter_quill_test.dart ' ;
import ' package:flutter_quill/src/widgets/raw_editor.dart ' ;
import ' package:flutter_test/flutter_test.dart ' ;
void main ( ) {
late QuillController controller ;
var didCopy = false ;
setUp ( ( ) {
controller = QuillController . basic ( ) ;
@ -78,5 +80,54 @@ void main() {
expect ( error , isNull ) ;
expect ( latestUri , equals ( uri ) ) ;
} ) ;
Widget customBuilder ( BuildContext context , RawEditorState state ) {
return AdaptiveTextSelectionToolbar (
anchors: state . contextMenuAnchors ,
children: [
Container (
height: 50 ,
color: Colors . white ,
child: Row (
mainAxisAlignment: MainAxisAlignment . spaceAround ,
children: [
IconButton (
onPressed: ( ) {
didCopy = true ;
} ,
icon: const Icon ( Icons . copy ) ,
) ,
] ,
) ,
) ,
] ,
) ;
}
testWidgets ( ' custom context menu builder ' , ( tester ) async {
await tester . pumpWidget ( MaterialApp (
home: QuillEditor (
controller: controller ,
focusNode: FocusNode ( ) ,
scrollController: ScrollController ( ) ,
scrollable: true ,
padding: EdgeInsets . zero ,
autoFocus: true ,
readOnly: false ,
expands: true ,
contextMenuBuilder: customBuilder ,
) ,
) ) ;
/ / Long press to show menu
await tester . longPress ( find . byType ( QuillEditor ) ) ;
await tester . pumpAndSettle ( ) ;
/ / Verify custom widget shows
expect ( find . byIcon ( Icons . copy ) , findsOneWidget ) ;
await tester . tap ( find . byIcon ( Icons . copy ) ) ;
expect ( didCopy , isTrue ) ;
} ) ;
} ) ;
}