adguard-home-manager/lib/models/app_screen.dart

17 lines
320 B
Dart
Raw Normal View History

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