With flutter_platform_widgets: 8.0.0 and flutter v3.29 on iOS the title of the PlatformAppBar disappears when I put Container() into the leading:
PlatformAppBar( title: Text( 'Test', overflow: TextOverflow.ellipsis, ), leading: Container() ), body: Container(), )
But if I modify it to Container(width: 0) or anything other than empty, it works fine. On Android it works fine with empty too.