blob: a92ebf41c0c0c7c2cd2a6966fda506482c0456f3 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart';
class NotifyMaterial extends StatelessWidget {
@override
Widget build(BuildContext context) {
LayoutChangedNotification().dispatch(context);
return Container();
}
}
void main() {
testWidgets('SizeChangedLayoutNotification test', (WidgetTester tester) async {
bool notified = false;
await tester.pumpWidget(
Center(
child: NotificationListener<LayoutChangedNotification>(
onNotification: (LayoutChangedNotification notification) {
throw Exception('Should not reach this point.');
},
child: const SizeChangedLayoutNotifier(
child: SizedBox(
width: 100.0,
height: 100.0,
),
),
),
),
);
await tester.pumpWidget(
Center(
child: NotificationListener<LayoutChangedNotification>(
onNotification: (LayoutChangedNotification notification) {
expect(notification, isInstanceOf<SizeChangedLayoutNotification>());
notified = true;
return true;
},
child: const SizeChangedLayoutNotifier(
child: SizedBox(
width: 200.0,
height: 100.0,
),
),
),
),
);
expect(notified, isTrue);
});
}