Flutter widget display in custom position - flutter

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?

Related

Flutter Hero with Text widget that changes style

I'm trying to transition a Text Widget between two screens (using Hero widget).
I'd like the Text Widget to change its style between these two screens (let's say FontSize).
Implementing it resulting in a strange behavior: the text doesn't change its size smoothly but rather has jerky animation...
Any idea on how to implement it correctly?
recently, I published a Package HERO_TEXT
https://pub.dev/packages/hero_text
it seems to me that it can help you.

How Create Curl Page

I want to animate a widget in a "page curl" fashion like in this video.
There is already a pub.dev package page_turn that does this, but it converts the widget into an image, which I don't want to do.
Is there any other way to create this animation without converting the widget to an image?

How to open Image in full screen when we press on list of image in flutter?

Here I actually use GridView.builder for load list of images. I want to add functionality like when I click on any particular image, it load and open in full screen. How is the possible in flutter?
It may not be the best way but it does the job for me.
Hero widget for multiple network images
The idea is to assign unique hero tags to your images and create a widget for the next screen which dynamically assigns hero tag with the value passed through the constructor. Instead of changing tags for your images, change the tag for the hero widget on the next screen.

Possible to place a widget beneath a text selection in 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?

flutter how to get size of widgets before building

I'd like to fit multiple widgets into PageView,
if the page is full, I want to move to the next page.
So I'd like to get sizes of the widgets inside the page without building the widgets.
This post seems that it's required to build the widget first before getting the size.
For text, I can do it using RenderParagraph.
Is it possible to get the size of custom widgets?
The widgets I want to get the size are basically text which we can tab each word.