blob: 6c2e6f1a644d2f0e224e78de960104d27994ad53 [file] [log] [blame]
// Copyright 2018 The Fuchsia 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/widgets.dart';
import 'package:flutter/material.dart';
import 'todo_list_widget.dart';
/// The widget holding the complete todo interface.
class TodoWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(title: const Text('Sledge example')),
body: new TodoListWidget());
}
}