blob: 90672672f53cc03df6312d6301d50756cfee9b7d [file] [log] [blame]
// Copyright 2015 The Vanadium 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:sky/widgets.dart';
import 'logic/croupier.dart' show Croupier;
import 'components/croupier.dart' show CroupierComponent;
class CroupierApp extends App {
Croupier croupier;
CroupierApp() : super() {
this.croupier = new Croupier();
}
Widget build() {
return new Container(
decoration: new BoxDecoration(
backgroundColor: const Color(0xFF6666FF), borderRadius: 5.0),
child: new CroupierComponent(this.croupier));
}
}
void main() {
runApp(new CroupierApp());
}