Prepend child
Equivalent to
Stack( children: [ input, ... ] )
NikuStack prependChild(Widget child) { this._children.insert(0, child); return this; }