tabPagesSch function
Implementation
tabPagesSch(
IconData icon,
String? label, {
TextStyle? styleLabel,
Color? colorIcons,
}) {
return Tab(
icon: Icon(icon, color: colorIcons ?? Colors.white),
child: Text(
label ?? "",
style: styleLabel ?? XStyles.xStyTextForDescr(colorIcons ?? Colors.white),
));
}