|
- /// GENERATED CODE - DO NOT MODIFY BY HAND
- /// *****************************************************
- /// FlutterGen
- /// *****************************************************
-
- // coverage:ignore-file
- // ignore_for_file: type=lint
- // ignore_for_file: directives_ordering,unnecessary_import,implicit_dynamic_list_literal,deprecated_member_use
-
- import 'package:flutter/widgets.dart';
-
- class $AssetsIconGen {
- const $AssetsIconGen();
-
- /// File path: assets/icon/bottom_nav_home_select.png
- AssetGenImage get bottomNavHomeSelect =>
- const AssetGenImage('assets/icon/bottom_nav_home_select.png');
-
- /// File path: assets/icon/bottom_nav_home_unselect.gif
- AssetGenImage get bottomNavHomeUnselect =>
- const AssetGenImage('assets/icon/bottom_nav_home_unselect.gif');
-
- /// File path: assets/icon/bottom_nav_profile_select.png
- AssetGenImage get bottomNavProfileSelect =>
- const AssetGenImage('assets/icon/bottom_nav_profile_select.png');
-
- /// File path: assets/icon/bottom_nav_profile_unselect.png
- AssetGenImage get bottomNavProfileUnselect =>
- const AssetGenImage('assets/icon/bottom_nav_profile_unselect.png');
-
- /// File path: assets/icon/bottom_nav_sleep_select.png
- AssetGenImage get bottomNavSleepSelect =>
- const AssetGenImage('assets/icon/bottom_nav_sleep_select.png');
-
- /// File path: assets/icon/bottom_nav_sleep_unselect.png
- AssetGenImage get bottomNavSleepUnselect =>
- const AssetGenImage('assets/icon/bottom_nav_sleep_unselect.png');
-
- /// File path: assets/icon/home_ai_model.png
- AssetGenImage get homeAiModel =>
- const AssetGenImage('assets/icon/home_ai_model.png');
-
- /// File path: assets/icon/home_bluetooth.png
- AssetGenImage get homeBluetooth =>
- const AssetGenImage('assets/icon/home_bluetooth.png');
-
- /// File path: assets/icon/home_icon_fyjl.png
- AssetGenImage get homeIconFyjl =>
- const AssetGenImage('assets/icon/home_icon_fyjl.png');
-
- /// File path: assets/icon/home_icon_mdmfy.png
- AssetGenImage get homeIconMdmfy =>
- const AssetGenImage('assets/icon/home_icon_mdmfy.png');
-
- /// File path: assets/icon/home_icon_tcty.png
- AssetGenImage get homeIconTcty =>
- const AssetGenImage('assets/icon/home_icon_tcty.png');
-
- /// File path: assets/icon/home_icon_thyyfy.png
- AssetGenImage get homeIconThyyfy =>
- const AssetGenImage('assets/icon/home_icon_thyyfy.png');
-
- /// File path: assets/icon/home_img.png
- AssetGenImage get homeImg => const AssetGenImage('assets/icon/home_img.png');
-
- /// File path: assets/icon/home_question.png
- AssetGenImage get homeQuestion =>
- const AssetGenImage('assets/icon/home_question.png');
-
- /// File path: assets/icon/icon.png
- AssetGenImage get icon => const AssetGenImage('assets/icon/icon.png');
-
- /// List of all assets
- List<AssetGenImage> get values => [
- bottomNavHomeSelect,
- bottomNavHomeUnselect,
- bottomNavProfileSelect,
- bottomNavProfileUnselect,
- bottomNavSleepSelect,
- bottomNavSleepUnselect,
- homeAiModel,
- homeBluetooth,
- homeIconFyjl,
- homeIconMdmfy,
- homeIconTcty,
- homeIconThyyfy,
- homeImg,
- homeQuestion,
- icon
- ];
- }
-
- class $AssetsImgGen {
- const $AssetsImgGen();
-
- /// File path: assets/img/image_ai.png
- AssetGenImage get imageAi => const AssetGenImage('assets/img/image_ai.png');
-
- /// File path: assets/img/image_bg_blur.png
- AssetGenImage get imageBgBlur =>
- const AssetGenImage('assets/img/image_bg_blur.png');
-
- /// File path: assets/img/image_user.png
- AssetGenImage get imageUser =>
- const AssetGenImage('assets/img/image_user.png');
-
- /// List of all assets
- List<AssetGenImage> get values => [imageAi, imageBgBlur, imageUser];
- }
-
- class Assets {
- const Assets._();
-
- static const $AssetsIconGen icon = $AssetsIconGen();
- static const $AssetsImgGen img = $AssetsImgGen();
- }
-
- class AssetGenImage {
- const AssetGenImage(
- this._assetName, {
- this.size,
- this.flavors = const {},
- });
-
- final String _assetName;
-
- final Size? size;
- final Set<String> flavors;
-
- Image image({
- Key? key,
- AssetBundle? bundle,
- ImageFrameBuilder? frameBuilder,
- ImageErrorWidgetBuilder? errorBuilder,
- String? semanticLabel,
- bool excludeFromSemantics = false,
- double? scale,
- double? width,
- double? height,
- Color? color,
- Animation<double>? opacity,
- BlendMode? colorBlendMode,
- BoxFit? fit,
- AlignmentGeometry alignment = Alignment.center,
- ImageRepeat repeat = ImageRepeat.noRepeat,
- Rect? centerSlice,
- bool matchTextDirection = false,
- bool gaplessPlayback = true,
- bool isAntiAlias = false,
- String? package,
- FilterQuality filterQuality = FilterQuality.medium,
- int? cacheWidth,
- int? cacheHeight,
- }) {
- return Image.asset(
- _assetName,
- key: key,
- bundle: bundle,
- frameBuilder: frameBuilder,
- errorBuilder: errorBuilder,
- semanticLabel: semanticLabel,
- excludeFromSemantics: excludeFromSemantics,
- scale: scale,
- width: width,
- height: height,
- color: color,
- opacity: opacity,
- colorBlendMode: colorBlendMode,
- fit: fit,
- alignment: alignment,
- repeat: repeat,
- centerSlice: centerSlice,
- matchTextDirection: matchTextDirection,
- gaplessPlayback: gaplessPlayback,
- isAntiAlias: isAntiAlias,
- package: package,
- filterQuality: filterQuality,
- cacheWidth: cacheWidth,
- cacheHeight: cacheHeight,
- );
- }
-
- ImageProvider provider({
- AssetBundle? bundle,
- String? package,
- }) {
- return AssetImage(
- _assetName,
- bundle: bundle,
- package: package,
- );
- }
-
- String get path => _assetName;
-
- String get keyName => _assetName;
- }
|