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

17 lines
315 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? fab;
2023-10-29 15:38:17 +01:00
final Widget child;
const AppScreen({
required this.name,
required this.icon,
2022-09-28 15:47:43 +02:00
this.appBar,
2023-10-29 15:38:17 +01:00
this.fab,
required this.child,
});
}