Answers for "flutter change appbar align"

2

flutter appbar center text

appBar: AppBar(
	title: Text('AppBar'),
    centerTitle: true, // appbar text center.
   ),
Posted by: Guest on August-20-2021
1

flutter appbar( title center)

AppBar(
  centerTitle: true, // this is all you need
  ...
)
Posted by: Guest on November-24-2020

Code answers related to "flutter change appbar align"

Browse Popular Code Answers by Language