diff --git a/forui/.flutter-plugins b/forui/.flutter-plugins index 753a49655..3aecfee83 100644 --- a/forui/.flutter-plugins +++ b/forui/.flutter-plugins @@ -1,6 +1,6 @@ # This is a generated file; do not edit or check into version control. -path_provider=C:\\Users\\Matthias\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider-2.1.2\\ -path_provider_android=C:\\Users\\Matthias\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_android-2.2.2\\ -path_provider_foundation=C:\\Users\\Matthias\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_foundation-2.3.2\\ -path_provider_linux=C:\\Users\\Matthias\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_linux-2.2.1\\ -path_provider_windows=C:\\Users\\Matthias\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\path_provider_windows-2.2.1\\ +path_provider=/home/runner/.pub-cache/hosted/pub.dev/path_provider-2.1.2/ +path_provider_android=/home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.2/ +path_provider_foundation=/home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.3.2/ +path_provider_linux=/home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ +path_provider_windows=/home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/ diff --git a/forui/.flutter-plugins-dependencies b/forui/.flutter-plugins-dependencies index d5becdef5..b15edd2d3 100644 --- a/forui/.flutter-plugins-dependencies +++ b/forui/.flutter-plugins-dependencies @@ -1 +1 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"path_provider_foundation","path":"C:\\\\Users\\\\Matthias\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.3.2\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"android":[{"name":"path_provider_android","path":"C:\\\\Users\\\\Matthias\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_android-2.2.2\\\\","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"C:\\\\Users\\\\Matthias\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_foundation-2.3.2\\\\","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"C:\\\\Users\\\\Matthias\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_linux-2.2.1\\\\","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"C:\\\\Users\\\\Matthias\\\\AppData\\\\Local\\\\Pub\\\\Cache\\\\hosted\\\\pub.dev\\\\path_provider_windows-2.2.1\\\\","native_build":false,"dependencies":[]}],"web":[]},"dependencyGraph":[{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2024-03-04 21:30:06.417920","version":"3.19.0"} \ No newline at end of file +{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"path_provider_foundation","path":"/home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.3.2/","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"android":[{"name":"path_provider_android","path":"/home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.2/","native_build":true,"dependencies":[]}],"macos":[{"name":"path_provider_foundation","path":"/home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.3.2/","shared_darwin_source":true,"native_build":true,"dependencies":[]}],"linux":[{"name":"path_provider_linux","path":"/home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/","native_build":false,"dependencies":[]}],"windows":[{"name":"path_provider_windows","path":"/home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.2.1/","native_build":false,"dependencies":[]}],"web":[]},"dependencyGraph":[{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2024-03-04 14:02:04.733527","version":"3.19.2"} \ No newline at end of file diff --git a/forui/lib/forui.dart b/forui/lib/forui.dart index d46f4cc5c..46367de45 100644 --- a/forui/lib/forui.dart +++ b/forui/lib/forui.dart @@ -1,4 +1,3 @@ -library forui; export 'src/theme.dart'; export 'src/theme_data.dart'; diff --git a/forui/lib/src/theme.dart b/forui/lib/src/theme.dart index a1b797c2d..b876ce9dd 100644 --- a/forui/lib/src/theme.dart +++ b/forui/lib/src/theme.dart @@ -1,4 +1,7 @@ +// Flutter imports: import 'package:flutter/material.dart'; + +// Project imports: import 'package:forui/src/theme_data.dart'; class FTheme extends StatefulWidget { @@ -11,9 +14,7 @@ class FTheme extends StatefulWidget { final Widget child; const FTheme({ - super.key, - required this.data, - required this.child, + required this.data, required this.child, super.key, }); @override diff --git a/forui/test/forui_test.dart b/forui/test/forui_test.dart index 0da434d92..cbad68d63 100644 --- a/forui/test/forui_test.dart +++ b/forui/test/forui_test.dart @@ -1,3 +1,4 @@ +// Package imports: import 'package:flutter_test/flutter_test.dart'; void main() {