Skip to content

Commit

Permalink
Commit from GitHub Actions (Forui Presubmit)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pante committed Nov 4, 2024
1 parent 1f0ffd8 commit dde9a4a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import 'package:flutter/widgets.dart';

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

import 'package:forui/forui.dart';

/// A controller for a select group.
abstract class FSelectGroupController<T> extends FChangeNotifier {
final Set<T> _values;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ void main() {
await tester.pumpWidget(
TestScaffold.app(
theme: theme.data,
child: FSelectMenuTile(
child: FSelectMenuTile(
groupController: controller,
prefixIcon: FIcon(FAssets.icons.calendar),
label: const Text('Label'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ void main() {
testWidgets('tap on tile opens menu', (tester) async {
await tester.pumpWidget(
TestScaffold.app(
child: FSelectMenuTile(
child: FSelectMenuTile(
groupController: controller,
prefixIcon: FIcon(FAssets.icons.calendar),
label: const Text('Label'),
Expand Down Expand Up @@ -43,7 +43,7 @@ void main() {
testWidgets('selecting item in menu does not close it', (tester) async {
await tester.pumpWidget(
TestScaffold.app(
child: FSelectMenuTile(
child: FSelectMenuTile(
groupController: controller,
prefixIcon: FIcon(FAssets.icons.calendar),
label: const Text('Label'),
Expand Down Expand Up @@ -74,7 +74,7 @@ void main() {
testWidgets('selecting item in menu closes it', (tester) async {
await tester.pumpWidget(
TestScaffold.app(
child: FSelectMenuTile(
child: FSelectMenuTile(
autoHide: true,
groupController: controller,
prefixIcon: FIcon(FAssets.icons.calendar),
Expand Down

0 comments on commit dde9a4a

Please sign in to comment.