I\'m making an application in Xamarin forms but I have some trouble sticking a layout to the bottom of the device. I thought an AbsoluteLayout would work, but I cannot grasp
You can use VerticalOptions to send layout to bottom.
var stacklayout = new stackLayout() { VerticalOptions = LayoutOptions.EndAndExpand Children = { //your elements } }