mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-19 21:39:16 +00:00
13 lines
227 B
Dart
13 lines
227 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class AppScreen {
|
||
|
final String name;
|
||
|
final IconData icon;
|
||
|
final Widget widget;
|
||
|
|
||
|
const AppScreen({
|
||
|
required this.name,
|
||
|
required this.icon,
|
||
|
required this.widget
|
||
|
});
|
||
|
}
|