基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
745 B

  1. import 'package:flutter/material.dart';
  2. import 'package:zhiying_comm/zhiying_comm.dart';
  3. ///
  4. /// 我的团队 - 空数据视图
  5. ///
  6. class TeamTempWidget extends StatefulWidget {
  7. @override
  8. _TeamTempWidgetState createState() => _TeamTempWidgetState();
  9. }
  10. class _TeamTempWidgetState extends State<TeamTempWidget> {
  11. @override
  12. Widget build(BuildContext context) {
  13. return Container(
  14. child: Column(
  15. children: <Widget>[
  16. /// 空数据图片
  17. Container(width: 108, height: 116.5, color: Colors.red),
  18. const SizedBox(height: 26),
  19. /// 文字提示
  20. Text('暂时木有好友呀~', style: TextStyle(color: HexColor.fromHex('#999999'), fontSize: 12))
  21. ],
  22. ),
  23. );
  24. }
  25. }