How to left align text title in app bar?
In android: they’re still left-aligned, but ios: they’re center-aligned title.
How to fix that?
AppBar(
titleSpacing: 0,
centerTitle: false,
automaticallyImplyLeading: false,
leadingWidth: 0,
title: Image.asset(Images.appLogo, height: 28, width: 28)
);
3
Answers
You can set the
platform
parameter in theThemeData
of the app toTargetPlatform.android
. Then the app will behave as if it were running on an android device!In iOS app title have always a center aligned behaviour. If you need align title in left side so you can follow below the code….
You can Wrap your
Text
Widget with Row:OR simply use
centerTitle: false;