-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[A/Experiment] Include Element Embedding
- Loading branch information
1 parent
41080b5
commit e116ebb
Showing
17 changed files
with
707 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# web_embedding | ||
|
||
A new Flutter project. | ||
|
||
## Getting Started | ||
- Whhen playing around with this, you need to install dart3-alpha. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# This file configures the analyzer, which statically analyzes Dart code to | ||
# check for errors, warnings, and lints. | ||
# | ||
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled | ||
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be | ||
# invoked from the command line by running `flutter analyze`. | ||
|
||
# The following line activates a set of recommended lints for Flutter apps, | ||
# packages, and plugins designed to encourage good coding practices. | ||
include: package:flutter_lints/flutter.yaml | ||
|
||
linter: | ||
# The lint rules applied to this project can be customized in the | ||
# section below to disable rules from the `package:flutter_lints/flutter.yaml` | ||
# included above or to enable additional rules. A list of all available lints | ||
# and their documentation is published at | ||
# https://dart-lang.github.io/linter/lints/index.html. | ||
# | ||
# Instead of disabling a lint rule for the entire project in the | ||
# section below, it can also be suppressed for a single line of code | ||
# or a specific dart file by using the `// ignore: name_of_lint` and | ||
# `// ignore_for_file: name_of_lint` syntax on the line or in the file | ||
# producing the lint. | ||
rules: | ||
# avoid_print: false # Uncomment to disable the `avoid_print` rule | ||
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule | ||
|
||
# Additional information about this file can be found at | ||
# https://dart.dev/guides/language/analysis-options |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
import 'src/counter.dart'; | ||
|
||
void main() { | ||
runApp(const MyApp()); | ||
} | ||
|
||
class MyApp extends StatelessWidget { | ||
const MyApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return MaterialApp( | ||
title: 'Element Embedding Demo', | ||
theme: ThemeData( | ||
primarySwatch: Colors.blue, | ||
), | ||
debugShowCheckedModeBanner: false, | ||
home: const MyHomePage(title: 'Element Embedding Demo'), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
import 'dart:async'; | ||
// ignore: avoid_web_libraries_in_flutter | ||
import 'dart:html'; | ||
|
||
import 'package:flutter/material.dart'; | ||
import 'package:js/js.dart' as js; | ||
import 'package:js/js_util.dart' as js_util; | ||
|
||
class MyHomePage extends StatefulWidget { | ||
const MyHomePage({super.key, required this.title}); | ||
|
||
final String title; | ||
|
||
@override | ||
State<MyHomePage> createState() => _MyHomePageState(); | ||
} | ||
|
||
@js.JSExport() | ||
class _MyHomePageState extends State<MyHomePage> { | ||
int _counterScreenCount = 0; | ||
final _streamController = StreamController<void>.broadcast(); | ||
|
||
String _url = 'flutter.dev'; | ||
bool _isShown = true; | ||
|
||
@override | ||
void initState() { | ||
super.initState(); | ||
final export = js_util.createDartExport(this); | ||
// These two are used inside the [js/js-interop.js] | ||
js_util.setProperty(js_util.globalThis, '_appState', export); | ||
js_util.callMethod<void>(js_util.globalThis, '_stateSet', []); | ||
} | ||
|
||
@js.JSExport() | ||
void getValue(String payload) { | ||
setState(() { | ||
_url = payload; | ||
// This line makes sure the handler gets invoked | ||
_streamController.add(null); | ||
}); | ||
} | ||
|
||
@js.JSExport() | ||
void showHideValue(bool val) { | ||
setState(() { | ||
_isShown = val; | ||
// This line makes sure the handler gets invoked | ||
_streamController.add(null); | ||
}); | ||
} | ||
|
||
@js.JSExport() | ||
void increment() { | ||
setState(() { | ||
_counterScreenCount++; | ||
|
||
// This line makes sure the handler gets invoked | ||
_streamController.add(null); | ||
}); | ||
} | ||
|
||
@js.JSExport() | ||
void addHandler(void Function() handler) { | ||
// This registers the handler we wrote in [js/js-interop.js] | ||
_streamController.stream.listen((event) { | ||
handler(); | ||
}); | ||
} | ||
|
||
@js.JSExport() | ||
int get count => _counterScreenCount; | ||
|
||
@js.JSExport() | ||
String get showHideNav => _isShown ? 'Hide Navigation' : 'Show Navigation'; | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
appBar: AppBar( | ||
title: Text(widget.title), | ||
), | ||
body: Center( | ||
child: Column( | ||
mainAxisAlignment: MainAxisAlignment.center, | ||
children: [ | ||
const Text( | ||
'You have pushed the button this many times:', | ||
), | ||
Text( | ||
'$_counterScreenCount', | ||
style: Theme.of(context).textTheme.headlineMedium, | ||
), | ||
const SizedBox(height: 40), | ||
if (_isShown) | ||
ElevatedButton( | ||
onPressed: () => _launchUrl(_url), | ||
child: Text('Going to $_url'), | ||
) | ||
], | ||
), | ||
), | ||
floatingActionButton: FloatingActionButton( | ||
onPressed: increment, | ||
tooltip: 'Increment', | ||
child: const Icon(Icons.add), | ||
), | ||
); | ||
} | ||
|
||
Future<void> _launchUrl(String url) async { | ||
final toLaunch = Uri(scheme: 'https', host: url); | ||
window.open(toLaunch.toString(), 'new tab'); | ||
} | ||
|
||
@override | ||
void dispose() { | ||
_streamController.close(); | ||
super.dispose(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
# Generated by pub | ||
# See https://dart.dev/tools/pub/glossary#lockfile | ||
packages: | ||
async: | ||
dependency: transitive | ||
description: | ||
name: async | ||
sha256: bfe67ef28df125b7dddcea62755991f807aa39a2492a23e1550161692950bbe0 | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "2.10.0" | ||
boolean_selector: | ||
dependency: transitive | ||
description: | ||
name: boolean_selector | ||
sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "2.1.1" | ||
characters: | ||
dependency: transitive | ||
description: | ||
name: characters | ||
sha256: e6a326c8af69605aec75ed6c187d06b349707a27fbff8222ca9cc2cff167975c | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.2.1" | ||
clock: | ||
dependency: transitive | ||
description: | ||
name: clock | ||
sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.1.1" | ||
collection: | ||
dependency: transitive | ||
description: | ||
name: collection | ||
sha256: "4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.17.1" | ||
fake_async: | ||
dependency: transitive | ||
description: | ||
name: fake_async | ||
sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.3.1" | ||
flutter: | ||
dependency: "direct main" | ||
description: flutter | ||
source: sdk | ||
version: "0.0.0" | ||
flutter_lints: | ||
dependency: "direct dev" | ||
description: | ||
name: flutter_lints | ||
sha256: aeb0b80a8b3709709c9cc496cdc027c5b3216796bc0af0ce1007eaf24464fd4c | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "2.0.1" | ||
flutter_test: | ||
dependency: "direct dev" | ||
description: flutter | ||
source: sdk | ||
version: "0.0.0" | ||
js: | ||
dependency: "direct main" | ||
description: | ||
name: js | ||
sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3 | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "0.6.7" | ||
lints: | ||
dependency: transitive | ||
description: | ||
name: lints | ||
sha256: "5e4a9cd06d447758280a8ac2405101e0e2094d2a1dbdd3756aec3fe7775ba593" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "2.0.1" | ||
matcher: | ||
dependency: transitive | ||
description: | ||
name: matcher | ||
sha256: c94db23593b89766cda57aab9ac311e3616cf87c6fa4e9749df032f66f30dcb8 | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "0.12.14" | ||
material_color_utilities: | ||
dependency: transitive | ||
description: | ||
name: material_color_utilities | ||
sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724 | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "0.2.0" | ||
meta: | ||
dependency: transitive | ||
description: | ||
name: meta | ||
sha256: "12307e7f0605ce3da64cf0db90e5fcab0869f3ca03f76be6bb2991ce0a55e82b" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.9.0" | ||
path: | ||
dependency: transitive | ||
description: | ||
name: path | ||
sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.8.3" | ||
sky_engine: | ||
dependency: transitive | ||
description: flutter | ||
source: sdk | ||
version: "0.0.99" | ||
source_span: | ||
dependency: transitive | ||
description: | ||
name: source_span | ||
sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250 | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.9.1" | ||
stack_trace: | ||
dependency: transitive | ||
description: | ||
name: stack_trace | ||
sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5 | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.11.0" | ||
stream_channel: | ||
dependency: transitive | ||
description: | ||
name: stream_channel | ||
sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "2.1.1" | ||
string_scanner: | ||
dependency: transitive | ||
description: | ||
name: string_scanner | ||
sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.2.0" | ||
term_glyph: | ||
dependency: transitive | ||
description: | ||
name: term_glyph | ||
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "1.2.1" | ||
test_api: | ||
dependency: transitive | ||
description: | ||
name: test_api | ||
sha256: "6182294da5abf431177fccc1ee02401f6df30f766bc6130a0852c6b6d7ee6b2d" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "0.4.18" | ||
vector_math: | ||
dependency: transitive | ||
description: | ||
name: vector_math | ||
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" | ||
url: "https://pub.dev" | ||
source: hosted | ||
version: "2.1.4" | ||
sdks: | ||
dart: ">=2.19.1 <4.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: web_embedding | ||
description: A new Flutter project. | ||
publish_to: 'none' # Remove this line if you wish to publish to pub.dev | ||
|
||
version: 1.0.0+1 | ||
|
||
environment: | ||
sdk: '>=2.19.1 <3.0.0' | ||
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
js: ^0.6.5 | ||
|
||
dev_dependencies: | ||
flutter_test: | ||
sdk: flutter | ||
flutter_lints: ^2.0.0 | ||
|
||
flutter: | ||
uses-material-design: true |
Oops, something went wrong.