How to left align text title in app bar (ios) in flutter?
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) );