'Flutter: How to change the icon returned by navigation?

I am new in Flutter. I want to change the icon returned by navigation.

Screen1 Code:

Navigator.push(
  context,
  MaterialPageRoute(
    builder: (context) => Screen2(),
  ),
);

Screen2 Code:

Scaffold(
  appBar: AppBar(),
  body: Container(),
),


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source