Home > Enterprise >  How can I move right side of icon image?
How can I move right side of icon image?

Time:05-17

I want to move the right side of the icon. How can I do that? Does anyone help me, please Thanks

CodePudding user response:

I think, What you mention seems to be 'actions'

Did you see this?

https://api.flutter.dev/flutter/material/AppBar-class.html

CodePudding user response:

Try this :

   AppBar(
     actions: [
       const Icon(
        Icons.smart_button,
        size: 18,
       )
     ],
   )
  • Related