blob: c459ecb6047daa530938d59fbb8aee8a0f325324 [file] [log] [blame]
// Copyright 2022 The Flutter Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd.
import 'package:flutter/material.dart';
import 'package:stager/stager.dart';
/// To run:
/// flutter run -t test/scenes/hello.stager_app.g.dart -d macos
class HelloScene extends Scene {
@override
Widget build(BuildContext context) {
return MaterialApp(home: Card(child: Text('Hello, I am $title.')));
}
@override
Future<void> setUp() async {}
@override
String get title => '$runtimeType';
}