Add spacing of icon in appbar right side?

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?

You can add space between the title and the Icon by wrapping the Icon widget in a SizedBox widget with a desired width. Here’s the modified code:

  appBar: AppBar(
          automaticallyImplyLeading: false,
          title: Row(
            children: <Widget>[
              Text("Breeds of Dogs"),
              SizedBox(width: 20), // add desired width between title and Icon
              Icon(Icons.add_a_photo),
            ],
          ),
        )