Skip to content

Instantly share code, notes, and snippets.

@AlenaNicolay
Created August 8, 2023 12:33
Show Gist options
  • Save AlenaNicolay/020b9385bfc9f3aa89a627891e3f45b9 to your computer and use it in GitHub Desktop.
Save AlenaNicolay/020b9385bfc9f3aa89a627891e3f45b9 to your computer and use it in GitHub Desktop.
widgetbook.directories.g.dart
// 'widgetbook.directories.g.dart'
// coverage:ignore-file
// ignore_for_file: type=lint
// ignore_for_file: unused_import, prefer_relative_imports, directives_ordering
// GENERATED CODE - DO NOT MODIFY BY HAND
// **************************************************************************
// AppGenerator
// **************************************************************************
import 'package:full_example/blog.dart';
import 'package:full_example/components/container.dart';
import 'package:full_example/components/custom_card.dart';
import 'package:full_example/components/custom_text_field.dart';
import 'package:full_example/customs/custom_knob.dart';
import 'package:widgetbook/widgetbook.dart';
final directories = [
WidgetbookComponent(
name: 'CustomButton',
useCases: [
WidgetbookUseCase(
name: 'Enabled',
builder: (context) => enabledButton(context),
),
WidgetbookUseCase(
name: 'Disabled',
builder: (context) => disabledButton(context),
),
],
),
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment