no_data_view.dart 648 B

12345678910111213141516171819202122232425262728
  1. import 'package:flutter/material.dart';
  2. class VNoDataView extends StatelessWidget {
  3. const VNoDataView({super.key});
  4. @override
  5. Widget build(BuildContext context) {
  6. return Container(
  7. margin: const EdgeInsets.only(top: 80),
  8. child: Column(
  9. children: [
  10. Center(
  11. child: Image.asset(
  12. "assets/images/no_data.png",
  13. width: 300,
  14. height: 300,
  15. fit: BoxFit.cover,
  16. ),
  17. ),
  18. const Text(
  19. "暂无数据,先看看别的吧",
  20. style: TextStyle(fontSize: 18),
  21. ),
  22. ],
  23. ),
  24. );
  25. }
  26. }