flutter/lib/components/empty_tip.dart

28 lines
601 B
Dart
Raw Permalink Normal View History

2025-09-13 17:01:01 +08:00
import 'package:flutter/material.dart';
class EmptyTip extends StatelessWidget {
final String text;
const EmptyTip({super.key, this.text = '暂无数据'});
@override
Widget build(BuildContext context) {
return Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Image.asset(
'assets/images/empty.png',
width: 100,
),
const SizedBox(height: 8),
Text(
text,
style: const TextStyle(color: Colors.grey, fontSize: 13),
),
],
),
);
}
}