import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart'; import 'colors.dart'; import 'dimens.dart'; class TextStyles { static const TextStyle textSize12 = const TextStyle( fontSize: Dimens.font_sp12, ); static const TextStyle textSize13 = const TextStyle( fontSize: Dimens.font_sp13, ); static const TextStyle textSize14 = const TextStyle( fontSize: Dimens.font_sp14, ); static const TextStyle textSize16 = const TextStyle( fontSize: Dimens.font_sp16, ); static const TextStyle textBold14 = const TextStyle( fontSize: Dimens.font_sp14, fontWeight: FontWeight.bold ); static const TextStyle textBold15 = const TextStyle( fontSize: Dimens.font_sp15, fontWeight: FontWeight.bold ); static const TextStyle textBold16 = const TextStyle( fontSize: Dimens.font_sp16, fontWeight: FontWeight.bold ); static const TextStyle textBold18 = const TextStyle( fontSize: Dimens.font_sp18, fontWeight: FontWeight.bold ); static const TextStyle textBold24 = const TextStyle( fontSize: 24.0, fontWeight: FontWeight.bold ); static const TextStyle textBold26 = const TextStyle( fontSize: 26.0, fontWeight: FontWeight.bold ); static const TextStyle textGray14 = const TextStyle( fontSize: Dimens.font_sp14, color: Colours.text_gray, ); static const TextStyle textDarkGray14 = const TextStyle( fontSize: Dimens.font_sp14, color: Colours.dark_text_gray, ); static const TextStyle textWhite14 = const TextStyle( fontSize: Dimens.font_sp14, color: Colors.white, ); static const TextStyle text = const TextStyle( fontSize: Dimens.font_sp14, color: Colours.text, // https://github.com/flutter/flutter/issues/40248 textBaseline: TextBaseline.alphabetic ); static const TextStyle text15 = const TextStyle( fontSize: Dimens.font_sp15, color: Colours.text, ); static const TextStyle textDark = const TextStyle( fontSize: Dimens.font_sp14, color: Colours.dark_text, textBaseline: TextBaseline.alphabetic ); static const TextStyle textGray10 = const TextStyle( fontSize: Dimens.font_sp10, color: Colours.text_gray, fontWeight: FontWeight.normal ); static const TextStyle textGray12 = const TextStyle( fontSize: Dimens.font_sp12, color: Colours.text_gray, fontWeight: FontWeight.normal ); static const TextStyle textGray13 = const TextStyle( fontSize: Dimens.font_sp13, color: Colours.text_gray, fontWeight: FontWeight.normal ); static const TextStyle textDarkGray12 = const TextStyle( fontSize: Dimens.font_sp12, color: Colours.dark_text_gray, fontWeight: FontWeight.normal ); static const TextStyle textHint14 = const TextStyle( fontSize: Dimens.font_sp14, color: Colours.dark_unselected_item_color ); static const TextStyle textDarkBlue14 = const TextStyle( fontSize: Dimens.font_sp14, color: Colours.dark_blue ); static const TextStyle textGray15 = const TextStyle( fontSize: Dimens.font_sp15, color: Colours.text_gray, fontWeight: FontWeight.normal ); }