一般用于TabBar中的item,上下结构,可指定图标和一个内容组件。
相关组件
Tab基本使用
【child】 : 子组件 【Widget】
【text】 : 文字 【String】
【icon】 : 下方组件 【Widgit】
text和child不能同时存在
import 'package:flutter/material.dart';
class CustomTab extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
Tab(
icon:Icon( Icons.add,color: Colors.blue,),
child: Text('添加'),
),
Tab(
icon:Icon( Icons.close,color: Colors.red,),
text: '删除',
),
Tab(
icon:Icon( Icons.refresh,color: Colors.green),
text: '更新',
),
],
),
);
}
}