mirror of
https://github.com/MeowLynxSea/vissh.git
synced 2025-07-09 11:34:35 +00:00
23 lines
449 B
Dart
23 lines
449 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class WindowData {
|
|
final String id;
|
|
final String title;
|
|
final Widget child;
|
|
final IconData icon;
|
|
Offset position;
|
|
Size size;
|
|
bool isMinimized;
|
|
bool isMaximized;
|
|
|
|
WindowData({
|
|
required this.id,
|
|
required this.title,
|
|
required this.child,
|
|
required this.icon,
|
|
required this.position,
|
|
required this.size,
|
|
this.isMinimized = false,
|
|
this.isMaximized = false,
|
|
});
|
|
} |