import 'package:flutter/material.dart'; import './icons_row.dart'; AppBar appBar(BuildContext context) { return AppBar( backgroundColor: Colors.grey[900], automaticallyImplyLeading: false, // remove back button titleSpacing: 0.0, elevation: 5.0, title: IconsRow(), ); }