assets_indexer

Last updated:

0 purchases

assets_indexer Image
assets_indexer Images
Add to Cart

Description:

assets indexer

assets_indexer #
To generate indexed constants for your assets in dart/flutter project! Inspired by android R.java concept
Installation #
dev_dependencies:
assets_indexer: ^0.0.11
copied to clipboard
also, don't forget to add
dev_dependencies:
build_runner:
copied to clipboard
Usage #
flutter packages pub run build_runner build
copied to clipboard
Output #
you can find your generated assets classes in lib/generated/<asset_dir_name>.asset.dart
Example usage #
in your pubspec.yaml
flutter:
assets:
- assets/images
copied to clipboard
in your <widget>.dart file
import 'package:example_app/generated/images.asset.dart';
import 'package:flutter/material.dart';

class Home extends StatelessWidget{

@override
Widget build(BuildContext context){
return Scaffold(
body: Center(
child: Image.asset(Images.icon,width: 100)
)
)
}
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.