Michael Goderbauer bd2ec40c08
Revert "Remove catalog (#67470)" (#67542)
This reverts commit 2462f6964ac267f884dd6cbb8035feb1da4b0f5d.
2020-10-07 10:28:06 -07:00

17 lines
381 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() {
runApp(
const Center(
child: Text(
'Instead run:\nflutter run lib/xxx.dart',
textDirection: TextDirection.ltr,
),
),
);
}