From b9370c99972c40c8ba46d3b3097c10b964d830a5 Mon Sep 17 00:00:00 2001 From: Navid Date: Fri, 1 Mar 2024 18:01:50 +0330 Subject: [PATCH] Add theme --- lib/src/temp/IconGalleryTheme.dart | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/src/temp/IconGalleryTheme.dart diff --git a/lib/src/temp/IconGalleryTheme.dart b/lib/src/temp/IconGalleryTheme.dart new file mode 100644 index 0000000..f1ee554 --- /dev/null +++ b/lib/src/temp/IconGalleryTheme.dart @@ -0,0 +1,11 @@ +import 'package:flutter/material.dart'; + +class IconGalleryTheme { + final Color? color; + final BoxBorder? border; + final BorderRadiusGeometry? borderRadius; + final List? boxShadow; + + IconGalleryTheme( + {this.color, this.border, this.borderRadius, this.boxShadow}); +}