Files
MWClash/lib/widgets/activate_box.dart
chen08209 ef97ef40a1 Remake dashboard
Optimize theme

Optimize more details

Update flutter version
2025-01-09 10:10:06 +08:00

21 lines
358 B
Dart

import 'package:flutter/material.dart';
class ActivateBox extends StatelessWidget {
final Widget child;
final bool active;
const ActivateBox({
super.key,
required this.child,
this.active = false,
});
@override
Widget build(BuildContext context) {
return IgnorePointer(
ignoring: !active,
child: child,
);
}
}