flutter/examples/flutter_gallery/lib/demo/rally_demo.dart
Per Classon 399aebc4b7
[Gallery] Add Material Study app Rally as an example app (#44907)
Add Material Study app Rally as an example app
2019-11-19 12:12:56 +01:00

16 lines
493 B
Dart

// Copyright 2019 The Chromium 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';
import 'package:flutter_gallery/demo/rally/app.dart';
class RallyDemo extends StatelessWidget {
const RallyDemo({ Key key }) : super(key: key);
static const String routeName = '/rally'; // Used by the Gallery app.
@override
Widget build(BuildContext context) => RallyApp();
}