diff --git a/.github/workflows/component-documentation.yml b/.github/workflows/component-documentation.yml new file mode 100644 index 0000000..c12e46a --- /dev/null +++ b/.github/workflows/component-documentation.yml @@ -0,0 +1,14 @@ +name: Iconica Standard Component Documentation Workflow +# Workflow Caller version: 1.0.0 + +on: + release: + types: [published] + + workflow_dispatch: + +jobs: + call-iconica-component-documentation-workflow: + uses: Iconica-Development/.github/.github/workflows/component-documentation.yml@master + secrets: inherit + permissions: write-all diff --git a/lib/src/animated_grid_to_list_item_builder.dart b/lib/src/animated_grid_to_list_item_builder.dart index 40bc771..9f33026 100644 --- a/lib/src/animated_grid_to_list_item_builder.dart +++ b/lib/src/animated_grid_to_list_item_builder.dart @@ -11,10 +11,10 @@ import 'package:flutter/material.dart'; /// Requires [listItemBuilder] which is an [IndexedWidgetBuilder] to build items /// in [AnimatedGridToList] list state. /// -/// Requires [gridItemSize] which is of type [Size] to build the items and +/// Requires [gridItemSize] which is of type [Size] to build the items and /// handle the scrolling accordingly. /// -/// Requires [listItemSize] which is of type [Size] to build the items and +/// Requires [listItemSize] which is of type [Size] to build the items and /// handle the scrolling accordingly. /// /// It also requires an [itemCount], which is of type [int]. @@ -38,11 +38,11 @@ class AnimatedGridToListItemBuilder { /// [IndexedWidgetBuilder] which build the items in animated state. final IndexedWidgetBuilder? animatedItemBuilder; - /// A [Size] to build the items in the correct manner and handle scrolling + /// A [Size] to build the items in the correct manner and handle scrolling /// in grid state. final Size gridItemSize; - /// A [Size] to build the items in the correct manner and handle scrolling + /// A [Size] to build the items in the correct manner and handle scrolling /// in list state. final Size listItemSize;