Answers for "dart move item in stack to bottom"

0

dart move item in stack to bottom

//use an alignment widget

Stack(
alignment:Alignment.center,
children:[
Text("K"),
Align(
alignment:Alignment.bottomCenter,
child:Text("hello"),
),
]
),
Posted by: Guest on January-18-2022

Browse Popular Code Answers by Language