mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
22 lines
722 B
Dart
22 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);
|
|
}
|
|
}
|