enter image description hereWhy I can't use the row and trailing and sized box section?
CodePudding user response:
Consider using AppBar
actions
like
Scaffold(
appBar: AppBar(
actions: [Icon(Icons.ac_unit)], ///here
),
body: Text("Body"),
);
Overview of AppBar
For more on AppBar