I’m having difficulty adding spacing between elements in my Flutter app.
Here is a visual example of what I’m trying to achieve:
Here is my current code:
appBar: AppBar(
automaticallyImplyLeading: false,
title: Text("Breeds of Dogs"),
actions: <Widget>[
Icon(Icons.add_a_photo),
],
)
How can I add space between the title and the Icon
?