This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:collection/collection.dart'; | |
| import 'package:flutter/rendering.dart'; | |
| import 'package:flutter/widgets.dart'; | |
| typedef SelectionTransform = String Function(Iterable<String>); | |
| /// A widget that transforms the text selection when copied. | |
| /// | |
| /// This uses the [SelectionContainer] with a custom [SelectionContainerDelegate] to override the | |
| /// [getSelectedContent] method with a custom implementation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/rendering.dart'; | |
| import 'package:flutter/widgets.dart'; | |
| typedef SelectionTransform = String Function(Iterable<String>); | |
| /// A widget that transforms the text selection when copied. | |
| /// | |
| /// This uses the [SelectionContainer] with a custom [SelectionContainerDelegate] to override the | |
| /// [getSelectedContent] method with a custom implementation. | |
| /// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "todo-tree.general.tags": ["FIXME:", "HOTFIX:", "INFO:", "NOTICE:", "TODO:"], | |
| "todo-tree.highlights.customHighlight": { | |
| "FIXME:": { | |
| "foreground": "red", | |
| "background": "grey", | |
| "icon": "bell" | |
| }, | |
| "HOTFIX:": { | |
| "foreground": "purple", | |
| "background": "white", |