mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
11 lines
469 B
Dart
11 lines
469 B
Dart
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
import 'package:lightmeter/screens/metering/components/bottom_controls/widget_bottom_controls.dart';
|
||
|
import 'package:lightmeter/screens/shared/animated_circular_button/widget_button_circular_animated.dart';
|
||
|
|
||
|
extension CommonFindersExtension on CommonFinders {
|
||
|
Finder measureButton() => find.descendant(
|
||
|
of: find.byType(MeteringBottomControls),
|
||
|
matching: find.byType(AnimatedCircluarButton),
|
||
|
);
|
||
|
}
|