forked from lxm_flutter/FlutterUnit
11 lines
234 B
Dart
Executable File
11 lines
234 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
import 'package:flutter_unit/components/panel/panel.dart';
|
|
|
|
|
|
class CustomCloseButton extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return CloseButton();
|
|
}
|
|
}
|