adguard-home-manager/lib/models/app_screen.dart
2022-09-28 15:47:43 +02:00

17 lines
No EOL
312 B
Dart

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,
this.appBar,
required this.body,
this.fab
});
}