blob: 6ff0df23eda2a0b144586e524136aa3cf388b2d3 [file] [log] [blame]
// 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();
}