Files
FlutterUnit/lib/components/project/no_more_widget.dart
2021-09-27 09:38:18 +08:00

18 lines
305 B
Dart

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