shrine_demo.dart 498 Bytes
Newer Older
1 2 3 4 5
// Copyright 2016 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';
6
import 'package:flutter_gallery/demo/shrine/app.dart';
7 8

class ShrineDemo extends StatelessWidget {
9 10
  const ShrineDemo({ Key key }) : super(key: key);

11 12 13
  static const String routeName = '/shrine'; // Used by the Gallery app.

  @override
14
  Widget build(BuildContext context) => ShrineApp();
15
}