Possible to place a widget beneath a text selection in Flutter? - flutter

Any idea of how I might place a widget under a text selection in flutter?
Is it possible to get the coordinates of a piece of text or a selection?

Related

How to select and focos part of a text in Flutter

I have a box with text, this box has a scroll.
I want to be able to tap on a button and select the text "products". If the text that I want to select is not on the screen, I need to jump into it.
Is it possible using Flutter web or desktop?
You can use SelectableText() widget instead of normal Text() widget

I want to add a buttombar to my application Contains only text flutter

I want to add a buttombar to my application Contains only just one text with background color .
I need it to write the copyright in my application, but I find just that I have to add At least a two-item
In the list,
I don't need this
Just i want to add a single one text with a background color
In your case you do not need a bottombar widget.
you can create a container with specific height and background color and center a text widget in the container.
If you are looking to add bottomNavigationBar with one item only you can just write your own widget in the bottom navigation bar like a Container and set a background of your choice and give it a child widget wrapped in an INKWELL or GESTUREDETECTOR and if it overlaps with the Phone's GUI you can wrap the inkwell with SAFEAREA widget

Flutter widget display in custom position

I am making a mobile app in Flutter. I need to display widget in random positions of my choice on the screen e.g. we can define the position of where we want to print or display something when we code in HTML.
I took this image from this link: https://www.invisionapp.com/inside-design/design-resources/free-mobile-ui-kit-atlas/
How can I achieve display a widget in a custom position as shown in the image above?

How to add and delete widget dynamically in flutter?

Here I added Stack widget in scaffold body. I added full screen image as background image and set edit text widget functionality on image.
I want to add Multiple Text Widget with delete and add widget functionality on button click in flutter. I mean when I Press on any particular Text widget it become enable and if I press on delete Icon, this particular selected widget delete on the stack widget.
How it could be possible in flutter? Any suggestion for it or I should use any other widget rather than Stack widget for this functionality.

Change value of a Text widget (NOT TextField)

I am trying to set up a text widget in my flutter app, and have the value change based on other widgets.
I can only find tips on how to change a TextField, but I don't want this to be editable by the user, only by code.
I can't set the data value of the widget, because it's final.
Is there any way to make this work in Flutter?