From 65f4488bf8554f491d1ee98e713855f6ec7df2d0 Mon Sep 17 00:00:00 2001 From: Vick Top Date: Tue, 13 Feb 2024 13:38:35 +0100 Subject: [PATCH 1/2] feat(documentation): Create component-documentation.yml workflow file --- .github/workflows/component-documentation.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/component-documentation.yml 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 From bff7ea47e841c27f5b2f10b08c095a3703cf78f8 Mon Sep 17 00:00:00 2001 From: Vick Top Date: Tue, 13 Feb 2024 16:53:49 +0100 Subject: [PATCH 2/2] fix(ci): run dart format --- lib/src/animated_grid_to_list_item_builder.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;