Answers for "how to vertically center the content in flutter on mobile screen"

1

flutter column widget vertical center

Column(
  mainAxisAlignment: MainAxisAlignment.center,
  crossAxisAlignment: CrossAxisAlignment.center,
  children:children,
)
Posted by: Guest on October-13-2020

Code answers related to "how to vertically center the content in flutter on mobile screen"

Browse Popular Code Answers by Language