Skip to content

Commit c0b0fd4

Browse files
committed
Clear
1 parent 539ecc7 commit c0b0fd4

File tree

453 files changed

+172901
-13664
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

453 files changed

+172901
-13664
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// Flutter web plugin registrant file.
2+
//
3+
// Generated file. Do not edit.
4+
//
5+
6+
// ignore_for_file: type=lint
7+
8+
void registerPlugins() {}

.dart_tool/flutter_build/68418fa642243a82f4ac7f4582e45f30/.filecache

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.
26.5 MB
Binary file not shown.

.dart_tool/flutter_build/68418fa642243a82f4ac7f4582e45f30/app.dill.deps

Lines changed: 1299 additions & 0 deletions
Large diffs are not rendered by default.

.dart_tool/flutter_build/68418fa642243a82f4ac7f4582e45f30/dart2js.d

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

.dart_tool/flutter_build/68418fa642243a82f4ac7f4582e45f30/dart2js.stamp

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build\\web\\assets\\packages/cupertino_icons/assets/CupertinoIcons.ttf build\\web\\assets\\packages/material_design_icons_flutter/lib/fonts/materialdesignicons-webfont.ttf build\\web\\assets\\fonts/MaterialIcons-Regular.otf build\\web\\assets\\shaders/ink_sparkle.frag build\\web\\assets\\AssetManifest.json build\\web\\assets\\AssetManifest.bin build\\web\\assets\\AssetManifest.bin.json build\\web\\assets\\FontManifest.json build\\web\\assets\\NOTICES: D:\\src\\dart\\projects\\design-patterns-dart_last\\pubspec.yaml C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cupertino_icons-1.0.8\\assets\\CupertinoIcons.ttf C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_design_icons_flutter-7.0.7296\\lib\\fonts\\materialdesignicons-webfont.ttf c:\\flutter\\bin\\cache\\artifacts\\material_fonts\\MaterialIcons-Regular.otf c:\\flutter\\packages\\flutter\\lib\\src\\material\\shaders\\ink_sparkle.frag C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\characters-1.3.0\\LICENSE C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\collection-1.19.0\\LICENSE C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\cupertino_icons-1.0.8\\LICENSE C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\flutter_lints-5.0.0\\LICENSE C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\lints-5.1.1\\LICENSE C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_color_utilities-0.11.1\\LICENSE C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\material_design_icons_flutter-7.0.7296\\LICENSE C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\meta-1.15.0\\LICENSE C:\\Users\\ilopX\\AppData\\Local\\Pub\\Cache\\hosted\\pub.dev\\vector_math-2.1.4\\LICENSE c:\\flutter\\bin\\cache\\pkg\\sky_engine\\LICENSE c:\\flutter\\packages\\flutter\\LICENSE
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"inputs":[],"outputs":[]}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// @dart=2.17
2+
// Flutter web bootstrap script for file:///D:/src/dart/projects/design-patterns-dart_last/bin/main.dart.
3+
//
4+
// Generated file. Do not edit.
5+
//
6+
7+
// ignore_for_file: type=lint
8+
9+
import 'dart:ui_web' as ui_web;
10+
import 'dart:async';
11+
12+
import 'file:///D:/src/dart/projects/design-patterns-dart_last/bin/main.dart' as entrypoint;
13+
import 'web_plugin_registrant.dart' as pluginRegistrant;
14+
15+
typedef _UnaryFunction = dynamic Function(List<String> args);
16+
typedef _NullaryFunction = dynamic Function();
17+
18+
Future<void> main() async {
19+
await ui_web.bootstrapEngine(
20+
runApp: () {
21+
if (entrypoint.main is _UnaryFunction) {
22+
return (entrypoint.main as _UnaryFunction)(<String>[]);
23+
}
24+
return (entrypoint.main as _NullaryFunction)();
25+
},
26+
registerPlugins: () {
27+
pluginRegistrant.registerPlugins();
28+
},
29+
);
30+
}

0 commit comments

Comments
 (0)