mirror of
https://github.com/flutter/samples.git
synced 2025-11-11 15:28:44 +00:00
12 lines
338 B
Dart
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();
|
|
}
|