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

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

// Copyright (C) 2020 littlegnal
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import 'package:example/src/r.dart';
import 'package:flutter/material.dart';

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

// ignore: public_member_api_docs
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>[
                const Image(
                  image: AssetImage(R.alarm_white),
                ),
                const Image(
                  image: AssetImage(R.baseline_3d_rotation_white),
                ),
                const Image(
                  image: AssetImage(R.arrow_right_alt_white),
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }
}
17
likes
120
pub points
58%
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

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

build, glob, meta, path, yaml

More

Packages that depend on assets_scanner