mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-18 13:02:05 +00:00
13 lines
No EOL
227 B
Dart
13 lines
No EOL
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
|
|
});
|
|
} |