look_generator 1.0.0 copy "look_generator: ^1.0.0" to clipboard
look_generator: ^1.0.0 copied to clipboard

outdated

Look widget preview source generator

This is the generator for the look package.

Features #

This package will generate runnable dart files to preview any widget decorated with the @look annotation.

Getting started #

Add the look package and look_generator to your app dependencies:

flutter pub add look
flutter pub add --dev look_generator

Usage #

Just add the @look annotation to the widget you want to preview.

// my_widget.dart

@look
class MyWidget extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Container();
  }
}

Generate sources using build_runner using the fancy command line that everyone know now:

flutter pub run build_runner build --delete-conflicting-outputs

A brand new file has been generated beside the original one. Search for the file *.look.dart.

Run it, and voilà !