Jenn Magder 17c5c4c33a
Revert "Remove unused flutter_driver_screenshot integration test (#76425)" (#76572)
This reverts commit ff8f4717f798e890cf2fb7abc61fd04ac2b4e21f.
2021-02-22 16:28:47 -08:00

16 lines
555 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/material.dart';
/// The base class for all the pages in this test.
abstract class PageWidget extends StatelessWidget {
/// Constructs a `Page` object.
const PageWidget({@required this.title, @required Key key}):super(key: key);
/// The text that shows on the list item on the main page as well as the navigation bar on the sub page.
final String title;
}