assets_scanner 1.0.1 copy "assets_scanner: ^1.0.1" to clipboard
assets_scanner: ^1.0.1 copied to clipboard

outdated

assets_scanner helps you generate assets path constants to r.dart file, you can preview the images assets by hovering over the constants.

example/lib/main.dart

import 'package:example/src/r.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        backgroundColor: Colors.blue,
        body: SafeArea(
          child: Center(
            child: Column(
              children: <Widget>[
                Image(
                  image: AssetImage(R.alarm_white),
                ),
                Image(
                  image: AssetImage(R.baseline_3d_rotation_white),
                ),
                Image(
                  image: AssetImage(R.arrow_right_alt_white),
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
17
likes
0
pub points
52%
popularity

Publisher

unverified uploader

assets_scanner helps you generate assets path constants to r.dart file, you can preview the images assets by hovering over the constants.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

analyzer, build, glob, path, yaml

More

Packages that depend on assets_scanner