forked from lxm_flutter/FlutterUnit
19 lines
434 B
Dart
Executable File
19 lines
434 B
Dart
Executable File
/// create by 张风捷特烈 on 2020/4/25
|
|
/// contact me by email 1981462002@qq.com
|
|
/// 说明:
|
|
// {
|
|
// "widgetId": 32,
|
|
// "priority": 1,
|
|
// "name": "CloseButton点击事件",
|
|
// "subtitle": " 点击时会退出当前栈",
|
|
// }
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
class CustomCloseButton extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return CloseButton();
|
|
}
|
|
}
|