updated device management

This commit is contained in:
hannathkadher
2024-10-11 10:35:14 +04:00
parent b87bbb9a62
commit 29a1470428
19 changed files with 207 additions and 128 deletions

View File

@ -8,12 +8,12 @@ class SpaceTile extends StatefulWidget {
final List<Widget>? children;
const SpaceTile({
Key? key,
super.key,
required this.title,
required this.initiallyExpanded,
required this.onExpansionChanged,
this.children,
}) : super(key: key);
});
@override
_SpaceTileState createState() => _SpaceTileState();