blob: 0503e05b24f96fa3d831cfb73ac896c565ca668a [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:flutter/material.dart';
import 'styles/common.dart' as style;
import 'components/deckgrid.dart';
void main() {
runApp(new MaterialApp(
theme: style.theme,
title: 'SyncSlides',
routes: {'/': (RouteArguments args) => new DeckGridPage()}));
}