import 'package:flutter/material.dart'; class AppScreen { final String name; final IconData icon; final PreferredSizeWidget? appBar; final Widget? fab; final Widget child; const AppScreen({ required this.name, required this.icon, this.appBar, this.fab, required this.child, }); }