mirror of
https://github.com/flutter/flutter.git
synced 2026-02-04 19:00:09 +08:00
* Refactor fix_data.yaml * ++ * lib, not lib/src * Nit * Nit * Update packages/flutter/test_fixes/material/app_bar_theme.dart Co-authored-by: Alexander Dahlberg <dustbin4ever@gmail.com> * Fix copy paste errors Co-authored-by: Alexander Dahlberg <dustbin4ever@gmail.com>
18 lines
727 B
Dart
18 lines
727 B
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/widgets.dart';
|
|
|
|
void main() {
|
|
// Changes made in https://github.com/flutter/flutter/pull/44189
|
|
const Element element = Element(myWidget);
|
|
element.inheritFromElement(ancestor);
|
|
element.inheritFromWidgetOfExactType(targetType);
|
|
element.ancestorInheritedElementForWidgetOfExactType(targetType);
|
|
element.ancestorWidgetOfExactType(targetType);
|
|
element.ancestorStateOfType(TypeMatcher<targetType>());
|
|
element.rootAncestorStateOfType(TypeMatcher<targetType>());
|
|
element.ancestorRenderObjectOfType(TypeMatcher<targetType>());
|
|
}
|