mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Feat: Animate fill for material app bar fixes: #162988 ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [x] I listed at least one issue that this PR fixes in the description above. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [x] All existing and new tests are passing.
54 lines
1.9 KiB
Dart
54 lines
1.9 KiB
Dart
// Copyright 2014 The Flutter 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/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
Finder findAppBarPhysicalModel() {
|
|
return find.descendant(of: find.byType(AppBar), matching: find.byType(PhysicalModel)).first;
|
|
}
|
|
|
|
Color? getAppBarAnimatedBackgroundColor(WidgetTester tester) {
|
|
return tester.widget<PhysicalModel>(findAppBarPhysicalModel()).color;
|
|
}
|
|
|
|
Finder findAppBarMaterial() {
|
|
return find.descendant(of: find.byType(AppBar), matching: find.byType(Material)).first;
|
|
}
|
|
|
|
Color? getAppBarBackgroundColor(WidgetTester tester) {
|
|
return tester.widget<Material>(findAppBarMaterial()).color;
|
|
}
|
|
|
|
double appBarHeight(WidgetTester tester) {
|
|
return tester.getSize(find.byType(AppBar, skipOffstage: false)).height;
|
|
}
|
|
|
|
double appBarTop(WidgetTester tester) {
|
|
return tester.getTopLeft(find.byType(AppBar, skipOffstage: false)).dy;
|
|
}
|
|
|
|
double appBarBottom(WidgetTester tester) {
|
|
return tester.getBottomLeft(find.byType(AppBar, skipOffstage: false)).dy;
|
|
}
|
|
|
|
double tabBarHeight(WidgetTester tester) {
|
|
return tester.getSize(find.byType(TabBar, skipOffstage: false)).height;
|
|
}
|
|
|
|
ScrollController primaryScrollController(WidgetTester tester) {
|
|
return PrimaryScrollController.of(tester.element(find.byType(CustomScrollView)));
|
|
}
|
|
|
|
void verifyTextNotClipped(Finder textFinder, WidgetTester tester) {
|
|
final Rect clipRect = tester.getRect(
|
|
find.ancestor(of: textFinder, matching: find.byType(ClipRect)).first,
|
|
);
|
|
final Rect textRect = tester.getRect(textFinder);
|
|
expect(textRect.top, inInclusiveRange(clipRect.top, clipRect.bottom));
|
|
expect(textRect.bottom, inInclusiveRange(clipRect.top, clipRect.bottom));
|
|
expect(textRect.left, inInclusiveRange(clipRect.left, clipRect.right));
|
|
expect(textRect.right, inInclusiveRange(clipRect.left, clipRect.right));
|
|
}
|