import 'package:flutter/material.dart'; AppBar appBarWithBackArrow(BuildContext context, String title) { return AppBar( backgroundColor: Colors.grey[900], leading: BackButton(color: Colors.deepOrange), title: Text(title), ); }