blob: b32a5c54415c907f0ee47040aade780808d21ae2 [file] [log] [blame]
// Copyright 2017 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/material.dart';
import 'package:keyboard/keyboard.dart';
class _App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Theme(
data: new ThemeData.light(),
child: const Keyboard(),
);
}
}
void main() {
runApp(new _App());
}