From efd9156b1cd9b4726df0c977393235b6b469a4e4 Mon Sep 17 00:00:00 2001 From: Adrian Samoticha <86920182+Adrian-Samoticha@users.noreply.github.com> Date: Fri, 3 May 2024 13:42:01 +0200 Subject: [PATCH] organize imports --- lib/src/theme/macos_theme.dart | 2 +- lib/src/theme/typography.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/theme/macos_theme.dart b/lib/src/theme/macos_theme.dart index dfb067ce..59776de6 100644 --- a/lib/src/theme/macos_theme.dart +++ b/lib/src/theme/macos_theme.dart @@ -1,7 +1,7 @@ +import 'package:equatable/equatable.dart'; import 'package:flutter/foundation.dart'; import 'package:macos_ui/macos_ui.dart'; import 'package:macos_ui/src/library.dart'; -import 'package:equatable/equatable.dart'; CupertinoDynamicColor _kScrollbarColor = CupertinoDynamicColor.withBrightness( color: MacosColors.systemGrayColor.color.withOpacity(0.8), diff --git a/lib/src/theme/typography.dart b/lib/src/theme/typography.dart index dcfaa46c..462e332e 100644 --- a/lib/src/theme/typography.dart +++ b/lib/src/theme/typography.dart @@ -1,8 +1,8 @@ +import 'package:equatable/equatable.dart'; import 'package:flutter/cupertino.dart'; import 'package:flutter/foundation.dart'; import 'package:macos_ui/src/theme/macos_colors.dart'; import 'package:macos_ui/src/theme/macos_theme.dart'; -import 'package:equatable/equatable.dart'; const _kDefaultFontFamily = '.AppleSystemUIFont';