From fd42096cc1580ece41a1afc20620f489ee0b8b4b Mon Sep 17 00:00:00 2001 From: Philip Fryklund Date: Tue, 3 Sep 2024 12:26:29 +0200 Subject: [PATCH] Rename hex_color files --- lib/src/widgets/rich_text.dart | 2 +- lib/src/widgets/{hex_color.dart => storyblok_color.dart} | 0 lib/widgets.dart | 2 +- test/{hex_color_test.dart => storyblok_color_test.dart} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename lib/src/widgets/{hex_color.dart => storyblok_color.dart} (100%) rename test/{hex_color_test.dart => storyblok_color_test.dart} (100%) diff --git a/lib/src/widgets/rich_text.dart b/lib/src/widgets/rich_text.dart index 8d0dc3a..2c0d6a5 100644 --- a/lib/src/widgets/rich_text.dart +++ b/lib/src/widgets/rich_text.dart @@ -7,7 +7,7 @@ import 'package:flutter/widgets.dart' as sb; import 'package:flutter_storyblok/src/fields/link.dart'; import 'package:flutter_storyblok/src/fields/rich_text.dart'; import 'package:flutter_storyblok/src/utils.dart'; -import 'package:flutter_storyblok/src/widgets/hex_color.dart'; +import 'package:flutter_storyblok/src/widgets/storyblok_color.dart'; typedef BlockBuilder = Widget Function(BuildContext context, JSONMap data); diff --git a/lib/src/widgets/hex_color.dart b/lib/src/widgets/storyblok_color.dart similarity index 100% rename from lib/src/widgets/hex_color.dart rename to lib/src/widgets/storyblok_color.dart diff --git a/lib/widgets.dart b/lib/widgets.dart index 79f41b8..0530108 100644 --- a/lib/widgets.dart +++ b/lib/widgets.dart @@ -1,4 +1,4 @@ library; -export 'src/widgets/hex_color.dart'; +export 'src/widgets/storyblok_color.dart'; export 'src/widgets/rich_text.dart'; diff --git a/test/hex_color_test.dart b/test/storyblok_color_test.dart similarity index 100% rename from test/hex_color_test.dart rename to test/storyblok_color_test.dart