Skip to content

Commit

Permalink
Resolves magnet link not showing in textbox on pasting from clipboard…
Browse files Browse the repository at this point in the history
… issue
  • Loading branch information
Akshatji800 committed May 27, 2023
1 parent f1289e4 commit ab8886b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/Components/bottom_floating_menu_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -486,9 +486,8 @@ class _BottomFloatingMenuButtonState extends State<BottomFloatingMenuButton>
FlutterClipboard.paste()
.then((value) {
setState(() {
magnetUrlController =
TextEditingController(
text: value);
magnetUrlController.text =
value;
});
});
},
Expand Down

0 comments on commit ab8886b

Please sign in to comment.