基础组件库
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.

custom_tabbar_widget.dart 257 B

12345678910111213
  1. import 'package:flutter/material.dart';
  2. import 'package:zhiying_comm/zhiying_comm.dart';
  3. ///
  4. /// 通用模块的tabbar
  5. ///
  6. class CustomTabBarWidget extends StatelessWidget {
  7. @override
  8. Widget build(BuildContext context) {
  9. return Container();
  10. }
  11. }