CustomTab constructor
const
CustomTab({
- Key? key,
- List<
Widget> ? children, - Widget child = const SizedBox.shrink(),
- bool topSafeArea = true,
- bool bottomSafeArea = true,
- EdgeInsets? padding,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
Implementation
const CustomTab({
super.key,
this.children,
this.child = const SizedBox.shrink(),
this.topSafeArea = true,
this.bottomSafeArea = true,
this.padding,
this.crossAxisAlignment = CrossAxisAlignment.start
});