how to align items to right in stack flutter code example
Example: flutter align widget in stack
Stack(
children: <Widget>[
Positioned.fill(
child: Align(
alignment: Alignment.centerRight,
child: ....
),
),
],
),