empty.dart 530 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5 6 7 8 9 10
// 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_driver/driver_extension.dart';

/// This application does nothing but show a empty screen.
void main() {
  enableFlutterDriverExtension();
11
  runApp(const Empty());
12 13 14
}

class Empty extends StatelessWidget {
15
  const Empty({super.key});
16

17 18 19
  @override
  Widget build(BuildContext context) => Container();
}