Files
FlutterUnit/lib/components/project/no_more_widget.dart
2020-11-25 13:45:46 +08:00

13 lines
277 B
Dart

import 'package:flutter/material.dart';
/// create by 张风捷特烈 on 2020/11/25
/// contact me by email 1981462002@qq.com
/// 说明:
class NoMoreWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(height: 56);
}
}