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,
)
],
)