blob: cba0a0f3aafb2d903b5e4d9d32907f16d7bacc0c [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 Scaffold(
appBar: AppBar(title: Text('Sledge example')),
body: TodoListWidget());
}
}