mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
23 lines
722 B
Dart
23 lines
722 B
Dart
|
import 'package:flutter/cupertino.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class CustomMaterialTextSelectionControls
|
||
|
extends MaterialTextSelectionControls {
|
||
|
CustomMaterialTextSelectionControls({required this.onPaste});
|
||
|
ValueChanged<TextSelectionDelegate> onPaste;
|
||
|
@override
|
||
|
Future<void> handlePaste(final TextSelectionDelegate delegate) async {
|
||
|
return onPaste(delegate);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class CustomCupertinoTextSelectionControls
|
||
|
extends CupertinoTextSelectionControls {
|
||
|
CustomCupertinoTextSelectionControls({required this.onPaste});
|
||
|
ValueChanged<TextSelectionDelegate> onPaste;
|
||
|
@override
|
||
|
Future<void> handlePaste(final TextSelectionDelegate delegate) async {
|
||
|
return onPaste(delegate);
|
||
|
}
|
||
|
}
|