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

17 lines
312 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
class AppScreen {
final String name;
final IconData icon;
2022-09-28 15:47:43 +02:00
final PreferredSizeWidget? appBar;
final Widget body;
final Widget? fab;
const AppScreen({
required this.name,
required this.icon,
2022-09-28 15:47:43 +02:00
this.appBar,
required this.body,
this.fab
});
}