flutter_resource_generator 1.1.3 copy "flutter_resource_generator: ^1.1.3" to clipboard
flutter_resource_generator: ^1.1.3 copied to clipboard

Generator resource class automatically by only one commnad based on build runner and dart script, avoid inputing resource file path manually

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_resource_generator/resource_config.dart';

void main() {
  runApp(MyApp());
}

@ResourceConfig(resourcePath: 'assets/')
class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Example',
      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 press Run > Flutter Hot Reload in a Flutter IDE). Notice that the
        // counter didn't reset back to zero; the application is not restarted.
        primarySwatch: Colors.blue,
      ),
      builder: (context, widget) => Container(),
    );
  }
}
7
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Generator resource class automatically by only one commnad based on build runner and dart script, avoid inputing resource file path manually

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

analyzer, args, build, build_runner, collection, path, source_gen

More

Packages that depend on flutter_resource_generator