1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-11 15:28:44 +00:00
Files
samples/web/slide_puzzle/web/main.dart
2019-05-24 19:27:17 -07:00

12 lines
338 B
Dart

// Copyright 2019 The Chromium 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_web_ui/ui.dart' as ui;
import 'package:slide_puzzle/main.dart' as app;
void main() async {
await ui.webOnlyInitializePlatform();
app.main();
}