Closed
Description
For some reason the leading in CupertinoNavigationBar is too high. Any ideas?
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blueGrey,
),
home: CupertinoPageScaffold(
navigationBar: new CupertinoNavigationBar(
leading: Text("lead"),
middle: Text("Title"),
trailing: Text("Trailing")
),
child: Center(child: Text("Test!")),
)
);
}
}
Metadata
Metadata
Assignees
Labels
Issues that are less important to the Flutter projectMatching the OEM platforms betterflutter/packages/flutter/cupertino repositoryFound to occur in 3.16Found to occur in 3.19flutter/packages/flutter repository. See also f: labels.The issue has been confirmed reproducible and is ready to work onOwned by Design Languages teamTriaged by Design Languages teamThere is a workaround available to overcome the issue
Type
Projects
Status
Done