Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fix/select-group' into fix/selec…
Browse files Browse the repository at this point in the history
…t-group
  • Loading branch information
Pante committed Oct 5, 2024
2 parents 4f07572 + 04095fb commit aea7682
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion forui/lib/src/widgets/select_group/select_group.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:forui/src/widgets/select_group/select_group_item.dart';

import 'package:meta/meta.dart';

import 'package:forui/forui.dart';
import 'package:forui/src/widgets/select_group/select_group_item.dart';

/// A set of items that are treated as a single selection.
///
Expand Down
3 changes: 2 additions & 1 deletion forui/lib/src/widgets/select_group/select_group_item.dart
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';

import 'package:forui/forui.dart';
import 'package:meta/meta.dart';

import 'package:forui/forui.dart';

@internal
class FSelectGroupItemData<T> extends InheritedWidget {
static FSelectGroupItemData<T> of<T>(BuildContext context) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void main() {

await expectLater(find.byType(TestScaffold), matchesGoldenFile('blue-screen.png'));
});

for (final (name, theme, background) in TestScaffold.themes) {
testWidgets('$name with checkbox', (tester) async {
await tester.pumpWidget(
Expand Down

0 comments on commit aea7682

Please sign in to comment.