In this example, I will share how to overlay a view partially using the Stack widget in Flutter. First create a Stack and then inside Stack add Column and make full layout without the poster. Then as a second Child of Stack, add this combination:
1 2 3 4 5 6 7 8 9 10 11 | new Stack( children: [ new Column( children: _layout() new Positioned( top:200, left:50, child: _child // or optionaly wrap the child in FractionalTranslation )] ) ) |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.