position of Overlay is not in control in version 1.1.0
See original GitHub issue**
In version 1.0.0, i could use code
containerStyle={{justifyContent: 'flex-end'}}
to set the position of Overlay on the bottom of page.
But in version 1.1.0, the position control is missing. and i found no description about this in release detail. **
** Could this feature to be recover? **
Issue Analytics
- State:
- Created 4 years ago
- Comments:12
Top Results From Across the Web
Overlay doesn't stretch 100% height · Issue #183 - GitHub
this seems to be a regression in #148 due to using the window as the scroll container (instead of a position(absolute, 0) div...
Read more >Unable to position my overlay correctly using absolute and ...
I have set the parent position to relative and the overlay to absolute with no success. I'm sure there is something simple I...
Read more >WebXR DOM Overlays Module - W3C
A "head-locked" overlay moves along with head rotations and does not have a fixed real-world location. NOTE: Future versions of this spec may ......
Read more >Build a Responsive UI with ConstraintLayout
To define a view's position in ConstraintLayout , you must add at least one horizontal and one vertical constraint for the view. Each...
Read more >OpenLayers v7.2.1 API - Class: Overlay
Like Control , Overlays are visible widgets. Unlike Controls, they are not in a fixed position on the screen, but are tied to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

In version 1.1, you could use:
overlayStyle={{ position: 'absolute', bottom: 0 }}to set the position of Overlay on the bottom of page. Works for me.Ok, thanks @wvalen! I will try it!