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.

24 lines
572 B

import 'package:flutter/material.dart';
3 years ago
import 'package:flutter_screenutil/flutter_screenutil.dart';
3 years ago
import 'package:aku_new_community/widget/painter/tab_indicator_parinter.dart';
class TabIndicator extends StatelessWidget {
final double? width;
final double? height;
const TabIndicator({Key? key, this.width, this.height}) : super(key: key);
@override
Widget build(BuildContext context) {
return SizedBox(
width: width ?? 40.w,
height: height ?? 10.w,
child: CustomPaint(
painter: TabIndicatorPainter(),
),
);
}
}