theming 0.0.2+2 theming: ^0.0.2+2 copied to clipboard
Theming Lib App ADVN
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add theming
With Flutter:
$ flutter pub add theming
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
theming: ^0.0.2+2
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:theming/enum/supported_locale.dart';
import 'package:theming/helper/colors_helper.dart';
import 'package:theming/helper/sizes_helper.dart';
import 'package:theming/theme.dart';
import 'package:theming/theme/borders.dart';
import 'package:theming/theme/colors.dart';
import 'package:theming/theme/decoration.dart';
import 'package:theming/theme/gradients.dart';
import 'package:theming/theme/hex_color.dart';
import 'package:theming/theme/sizes.dart';
import 'package:theming/theme/spaces.dart';
import 'package:theming/theme/styles.dart';
import 'package:theming/utils/shimmer_text_widget.dart';
import 'package:theming/utils/translator_text_utils.dart';
import 'package:theming/widget/button/custom_button.dart';
import 'package:theming/widget/button/custom_button_back_widget.dart';
import 'package:theming/widget/button/custom_button_icon.dart';
import 'package:theming/widget/button/custom_translator_button_field.dart';
import 'package:theming/widget/icon/custom_icon.dart';
import 'package:theming/widget/input/custom_input_form_field.dart';
import 'package:theming/widget/input/custom_translator_search_form_field.dart';
import 'package:theming/widget/input/custom_transtalor_input_form_field.dart';
import 'package:theming/widget/text/custom_text_cross_field.dart';
import 'package:theming/widget/text/custom_text_default_bold_field.dart';
import 'package:theming/widget/text/custom_text_default_field.dart';
import 'package:theming/widget/text/custom_text_default_italic_field.dart';
import 'package:theming/widget/text/custom_text_header_default_field.dart';
import 'package:theming/widget/text/custom_text_header_large_field.dart';
import 'package:theming/widget/text/custom_text_header_medium_field.dart';
import 'package:theming/widget/text/custom_text_large_bold_field.dart';
import 'package:theming/widget/text/custom_text_large_field.dart';
import 'package:theming/widget/text/custom_text_large_italic_field.dart';
import 'package:theming/widget/text/custom_text_medium_bold_field.dart';
import 'package:theming/widget/text/custom_text_medium_field.dart';
import 'package:theming/widget/text/custom_text_medium_italic_field.dart';
import 'package:theming/widget/text/custom_text_smaill_bold_field.dart';
import 'package:theming/widget/text/custom_text_small_field.dart';
import 'package:theming/widget/text/custom_text_small_italic_field.dart';
import 'package:theming/widget/text/custom_text_unline_field.dart';
import 'package:theming/widget/text/custom_text_unline_italic_field.dart';
import 'package:theming/widget/text/enum/custom_text_enum.dart';
import 'package:theming/widget/text/transtater/custom_translator_text_field.dart';