shrine_demo.dart 475 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5
// 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 'shrine/app.dart';
7 8

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

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

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