mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-20 22:09:11 +00:00
17 lines
No EOL
320 B
Dart
17 lines
No EOL
320 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,
|
|
required this.appBar,
|
|
required this.body,
|
|
this.fab
|
|
});
|
|
} |