Skip to content

Commit a81539e

Browse files
committedNov 14, 2023
Initial commit: POC
0 parents  commit a81539e

34 files changed

+757
-0
lines changed
 

‎.gitignore

+137
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
# Miscellaneous
2+
*.class
3+
*.lock
4+
*.log
5+
*.pyc
6+
*.swp
7+
.DS_Store
8+
.atom/
9+
.buildlog/
10+
.history
11+
.svn/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# Visual Studio Code related
20+
.classpath
21+
.project
22+
.settings/
23+
.vscode/*
24+
25+
# Flutter repo-specific
26+
/bin/cache/
27+
/bin/internal/bootstrap.bat
28+
/bin/internal/bootstrap.sh
29+
/bin/mingit/
30+
/dev/benchmarks/mega_gallery/
31+
/dev/bots/.recipe_deps
32+
/dev/bots/android_tools/
33+
/dev/devicelab/ABresults*.json
34+
/dev/docs/doc/
35+
/dev/docs/api_docs.zip
36+
/dev/docs/flutter.docs.zip
37+
/dev/docs/lib/
38+
/dev/docs/pubspec.yaml
39+
/dev/integration_tests/**/xcuserdata
40+
/dev/integration_tests/**/Pods
41+
/packages/flutter/coverage/
42+
version
43+
analysis_benchmark.json
44+
45+
# packages file containing multi-root paths
46+
.packages.generated
47+
48+
# Flutter/Dart/Pub related
49+
**/doc/api/
50+
.dart_tool/
51+
.flutter-plugins
52+
.flutter-plugins-dependencies
53+
**/generated_plugin_registrant.dart
54+
.packages
55+
.pub-preload-cache/
56+
.pub-cache/
57+
.pub/
58+
build/
59+
flutter_*.png
60+
linked_*.ds
61+
unlinked.ds
62+
unlinked_spec.ds
63+
64+
# Android related
65+
**/android/**/gradle-wrapper.jar
66+
.gradle/
67+
**/android/captures/
68+
**/android/gradlew
69+
**/android/gradlew.bat
70+
**/android/local.properties
71+
**/android/**/GeneratedPluginRegistrant.java
72+
**/android/key.properties
73+
*.jks
74+
75+
# iOS/XCode related
76+
**/ios/**/*.mode1v3
77+
**/ios/**/*.mode2v3
78+
**/ios/**/*.moved-aside
79+
**/ios/**/*.pbxuser
80+
**/ios/**/*.perspectivev3
81+
**/ios/**/*sync/
82+
**/ios/**/.sconsign.dblite
83+
**/ios/**/.tags*
84+
**/ios/**/.vagrant/
85+
**/ios/**/DerivedData/
86+
**/ios/**/Icon?
87+
**/ios/**/Pods/
88+
**/ios/**/.symlinks/
89+
**/ios/**/profile
90+
**/ios/**/xcuserdata
91+
**/ios/.generated/
92+
**/ios/Flutter/.last_build_id
93+
**/ios/Flutter/App.framework
94+
**/ios/Flutter/Flutter.framework
95+
**/ios/Flutter/Flutter.podspec
96+
**/ios/Flutter/Generated.xcconfig
97+
**/ios/Flutter/ephemeral
98+
**/ios/Flutter/app.flx
99+
**/ios/Flutter/app.zip
100+
**/ios/Flutter/flutter_assets/
101+
**/ios/Flutter/flutter_export_environment.sh
102+
**/ios/ServiceDefinitions.json
103+
**/ios/Runner/GeneratedPluginRegistrant.*
104+
105+
# macOS
106+
**/Flutter/ephemeral/
107+
**/Pods/
108+
**/macos/Flutter/GeneratedPluginRegistrant.swift
109+
**/macos/Flutter/ephemeral
110+
**/xcuserdata/
111+
112+
# Windows
113+
**/windows/flutter/generated_plugin_registrant.cc
114+
**/windows/flutter/generated_plugin_registrant.h
115+
**/windows/flutter/generated_plugins.cmake
116+
117+
# Linux
118+
**/linux/flutter/generated_plugin_registrant.cc
119+
**/linux/flutter/generated_plugin_registrant.h
120+
**/linux/flutter/generated_plugins.cmake
121+
122+
# Coverage
123+
coverage/
124+
125+
# Symbols
126+
app.*.symbols
127+
128+
# Exceptions to above rules.
129+
!**/ios/**/default.mode1v3
130+
!**/ios/**/default.mode2v3
131+
!**/ios/**/default.pbxuser
132+
!**/ios/**/default.perspectivev3
133+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
134+
!/dev/ci/**/Gemfile.lock
135+
!.vscode/settings.json
136+
137+
.fvm

‎.metadata

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: "367f9ea16bfae1ca451b9cc27c1366870b187ae2"
8+
channel: "stable"
9+
10+
project_type: app
11+
12+
# Tracks metadata for the flutter migrate command
13+
migration:
14+
platforms:
15+
- platform: root
16+
create_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2
17+
base_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2
18+
- platform: android
19+
create_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2
20+
base_revision: 367f9ea16bfae1ca451b9cc27c1366870b187ae2
21+
22+
# User provided section
23+
24+
# List of Local paths (relative to this file) that should be
25+
# ignored by the migrate tool.
26+
#
27+
# Files that are not part of the templates will be ignored by default.
28+
unmanaged_files:
29+
- 'lib/main.dart'
30+
- 'ios/Runner.xcodeproj/project.pbxproj'

‎.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"dart.sdkPath": "~/fvm/versions/3.13.9/bin/cache/dart-sdk"
3+
}

‎analysis_options.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This file configures the analyzer, which statically analyzes Dart code to
2+
# check for errors, warnings, and lints.
3+
#
4+
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5+
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6+
# invoked from the command line by running `flutter analyze`.
7+
8+
# The following line activates a set of recommended lints for Flutter apps,
9+
# packages, and plugins designed to encourage good coding practices.
10+
include: package:flutter_lints/flutter.yaml
11+
12+
linter:
13+
# The lint rules applied to this project can be customized in the
14+
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
15+
# included above or to enable additional rules. A list of all available lints
16+
# and their documentation is published at https://dart.dev/lints.
17+
#
18+
# Instead of disabling a lint rule for the entire project in the
19+
# section below, it can also be suppressed for a single line of code
20+
# or a specific dart file by using the `// ignore: name_of_lint` and
21+
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
22+
# producing the lint.
23+
rules:
24+
# avoid_print: false # Uncomment to disable the `avoid_print` rule
25+
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
26+
27+
# Additional information about this file can be found at
28+
# https://dart.dev/guides/language/analysis-options

‎android/.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
gradle-wrapper.jar
2+
/.gradle
3+
/captures/
4+
/gradlew
5+
/gradlew.bat
6+
/local.properties
7+
GeneratedPluginRegistrant.java
8+
9+
# Remember to never publicly share your keystore.
10+
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11+
key.properties
12+
**/*.keystore
13+
**/*.jks

‎android/app/build.gradle

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
plugins {
2+
id "com.android.application"
3+
id "kotlin-android"
4+
id "dev.flutter.flutter-gradle-plugin"
5+
}
6+
7+
def localProperties = new Properties()
8+
def localPropertiesFile = rootProject.file('local.properties')
9+
if (localPropertiesFile.exists()) {
10+
localPropertiesFile.withReader('UTF-8') { reader ->
11+
localProperties.load(reader)
12+
}
13+
}
14+
15+
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
16+
if (flutterVersionCode == null) {
17+
flutterVersionCode = '1'
18+
}
19+
20+
def flutterVersionName = localProperties.getProperty('flutter.versionName')
21+
if (flutterVersionName == null) {
22+
flutterVersionName = '1.0'
23+
}
24+
25+
android {
26+
namespace "com.example.computed_flutter"
27+
compileSdkVersion flutter.compileSdkVersion
28+
ndkVersion flutter.ndkVersion
29+
30+
compileOptions {
31+
sourceCompatibility JavaVersion.VERSION_1_8
32+
targetCompatibility JavaVersion.VERSION_1_8
33+
}
34+
35+
kotlinOptions {
36+
jvmTarget = '1.8'
37+
}
38+
39+
sourceSets {
40+
main.java.srcDirs += 'src/main/kotlin'
41+
}
42+
43+
defaultConfig {
44+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
45+
applicationId "com.example.computed_flutter"
46+
// You can update the following values to match your application needs.
47+
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
48+
minSdkVersion flutter.minSdkVersion
49+
targetSdkVersion flutter.targetSdkVersion
50+
versionCode flutterVersionCode.toInteger()
51+
versionName flutterVersionName
52+
}
53+
54+
buildTypes {
55+
release {
56+
// TODO: Add your own signing config for the release build.
57+
// Signing with the debug keys for now, so `flutter run --release` works.
58+
signingConfig signingConfigs.debug
59+
}
60+
}
61+
}
62+
63+
flutter {
64+
source '../..'
65+
}
66+
67+
dependencies {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<!-- The INTERNET permission is required for development. Specifically,
3+
the Flutter tool needs it to communicate with the running application
4+
to allow setting breakpoints, to provide hot reload, etc.
5+
-->
6+
<uses-permission android:name="android.permission.INTERNET"/>
7+
</manifest>
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<application
3+
android:label="computed_flutter"
4+
android:name="${applicationName}"
5+
android:icon="@mipmap/ic_launcher">
6+
<activity
7+
android:name=".MainActivity"
8+
android:exported="true"
9+
android:launchMode="singleTop"
10+
android:theme="@style/LaunchTheme"
11+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
12+
android:hardwareAccelerated="true"
13+
android:windowSoftInputMode="adjustResize">
14+
<!-- Specifies an Android theme to apply to this Activity as soon as
15+
the Android process has started. This theme is visible to the user
16+
while the Flutter UI initializes. After that, this theme continues
17+
to determine the Window background behind the Flutter UI. -->
18+
<meta-data
19+
android:name="io.flutter.embedding.android.NormalTheme"
20+
android:resource="@style/NormalTheme"
21+
/>
22+
<intent-filter>
23+
<action android:name="android.intent.action.MAIN"/>
24+
<category android:name="android.intent.category.LAUNCHER"/>
25+
</intent-filter>
26+
</activity>
27+
<!-- Don't delete the meta-data below.
28+
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
29+
<meta-data
30+
android:name="flutterEmbedding"
31+
android:value="2" />
32+
</application>
33+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package com.example.computed_flutter
2+
3+
import io.flutter.embedding.android.FlutterActivity
4+
5+
class MainActivity: FlutterActivity() {
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- Modify this file to customize your launch splash screen -->
3+
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
4+
<item android:drawable="?android:colorBackground" />
5+
6+
<!-- You can insert your own image assets here -->
7+
<!-- <item>
8+
<bitmap
9+
android:gravity="center"
10+
android:src="@mipmap/launch_image" />
11+
</item> -->
12+
</layer-list>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- Modify this file to customize your launch splash screen -->
3+
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
4+
<item android:drawable="@android:color/white" />
5+
6+
<!-- You can insert your own image assets here -->
7+
<!-- <item>
8+
<bitmap
9+
android:gravity="center"
10+
android:src="@mipmap/launch_image" />
11+
</item> -->
12+
</layer-list>
Loading
Loading
Loading
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
4+
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
5+
<!-- Show a splash screen on the activity. Automatically removed when
6+
the Flutter engine draws its first frame -->
7+
<item name="android:windowBackground">@drawable/launch_background</item>
8+
</style>
9+
<!-- Theme applied to the Android Window as soon as the process has started.
10+
This theme determines the color of the Android Window while your
11+
Flutter UI initializes, as well as behind your Flutter UI while its
12+
running.
13+
14+
This Theme is only used starting with V2 of Flutter's Android embedding. -->
15+
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
16+
<item name="android:windowBackground">?android:colorBackground</item>
17+
</style>
18+
</resources>
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
4+
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
5+
<!-- Show a splash screen on the activity. Automatically removed when
6+
the Flutter engine draws its first frame -->
7+
<item name="android:windowBackground">@drawable/launch_background</item>
8+
</style>
9+
<!-- Theme applied to the Android Window as soon as the process has started.
10+
This theme determines the color of the Android Window while your
11+
Flutter UI initializes, as well as behind your Flutter UI while its
12+
running.
13+
14+
This Theme is only used starting with V2 of Flutter's Android embedding. -->
15+
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
16+
<item name="android:windowBackground">?android:colorBackground</item>
17+
</style>
18+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<!-- The INTERNET permission is required for development. Specifically,
3+
the Flutter tool needs it to communicate with the running application
4+
to allow setting breakpoints, to provide hot reload, etc.
5+
-->
6+
<uses-permission android:name="android.permission.INTERNET"/>
7+
</manifest>

‎android/build.gradle

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
buildscript {
2+
ext.kotlin_version = '1.7.10'
3+
repositories {
4+
google()
5+
mavenCentral()
6+
}
7+
8+
dependencies {
9+
classpath 'com.android.tools.build:gradle:7.3.0'
10+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11+
}
12+
}
13+
14+
allprojects {
15+
repositories {
16+
google()
17+
mavenCentral()
18+
}
19+
}
20+
21+
rootProject.buildDir = '../build'
22+
subprojects {
23+
project.buildDir = "${rootProject.buildDir}/${project.name}"
24+
}
25+
subprojects {
26+
project.evaluationDependsOn(':app')
27+
}
28+
29+
tasks.register("clean", Delete) {
30+
delete rootProject.buildDir
31+
}

‎android/gradle.properties

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
org.gradle.jvmargs=-Xmx1536M
2+
android.useAndroidX=true
3+
android.enableJetifier=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
zipStoreBase=GRADLE_USER_HOME
4+
zipStorePath=wrapper/dists
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

‎android/settings.gradle

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
pluginManagement {
2+
def flutterSdkPath = {
3+
def properties = new Properties()
4+
file("local.properties").withInputStream { properties.load(it) }
5+
def flutterSdkPath = properties.getProperty("flutter.sdk")
6+
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
7+
return flutterSdkPath
8+
}
9+
settings.ext.flutterSdkPath = flutterSdkPath()
10+
11+
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
12+
13+
plugins {
14+
id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false
15+
}
16+
}
17+
18+
include ":app"
19+
20+
apply from: "${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle/app_plugin_loader.gradle"

‎example/main.dart

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
import 'package:built_collection/built_collection.dart';
2+
import 'package:computed_flutter/computed_flutter.dart';
3+
4+
import 'package:flutter/material.dart';
5+
6+
final source = ValueNotifier(<int>[].toBuiltList());
7+
8+
void main() {
9+
() async {
10+
source.value = [1, 2, -3, 4].toBuiltList();
11+
await Future.delayed(const Duration(seconds: 3));
12+
source.value = [1, 2, -3, -4].toBuiltList();
13+
await Future.delayed(const Duration(seconds: 3));
14+
source.value = [4, 5, 6].toBuiltList();
15+
await Future.delayed(const Duration(seconds: 3));
16+
source.value = [4, 5, 6].toBuiltList();
17+
}();
18+
19+
print('a');
20+
21+
runApp(const MyApp());
22+
}
23+
24+
class MyApp extends StatelessWidget {
25+
const MyApp({super.key});
26+
27+
@override
28+
Widget build(BuildContext context) {
29+
return MaterialApp(
30+
title: 'Computed Flutter Demo',
31+
theme: ThemeData(
32+
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
33+
useMaterial3: true,
34+
),
35+
home: const MyHomePage(title: 'Computed Flutter Demo'),
36+
);
37+
}
38+
}
39+
40+
class MyHomePage extends StatelessWidget {
41+
const MyHomePage({super.key, required this.title});
42+
final String title;
43+
44+
@override
45+
Widget build(BuildContext context) {
46+
final anyNegative =
47+
Computed(() => source.use.any((element) => element < 0));
48+
49+
final maybeReversed = Computed(
50+
() => anyNegative.use ? source.use.reversed.toBuiltList() : source.use);
51+
52+
final append0 = Computed(() {
53+
return maybeReversed.use.rebuild((p0) => p0.add(0));
54+
});
55+
56+
return Scaffold(
57+
appBar: AppBar(
58+
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
59+
title: Text(title),
60+
),
61+
body: Center(
62+
child: Column(
63+
mainAxisAlignment: MainAxisAlignment.center,
64+
children: <Widget>[
65+
ValueListenableBuilder(
66+
valueListenable: append0.asValueListenable,
67+
builder: (context, BuiltList<int> value, child) => Text(
68+
value.toString(),
69+
style: Theme.of(context).textTheme.headlineMedium,
70+
),
71+
)
72+
],
73+
),
74+
),
75+
);
76+
}
77+
}

‎lib/computed_flutter.dart

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export 'package:computed/computed.dart';
2+
import 'package:computed/computed.dart';
3+
import 'package:flutter/foundation.dart';
4+
5+
import 'src/computed_flutter.dart';
6+
7+
extension ComputedAsValueListenableExtension<T> on Computed<T> {
8+
ValueListenable<T> get asValueListenable =>
9+
ComputedAsValueListenableExtensionImpl<T>(this).asValueListenable;
10+
}
11+
12+
extension ComputedValueListenableExtension<T> on ValueListenable<T> {
13+
T get use => ComputedValueListenableExtensionImpl<T>(this).use;
14+
}

‎lib/src/computed_flutter.dart

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
import 'dart:async';
2+
3+
import 'package:flutter/foundation.dart';
4+
5+
import '../computed_flutter.dart';
6+
7+
// ignore: implementation_imports
8+
import 'package:computed/src/computed.dart';
9+
10+
class ComputedValueListenable<T> extends ValueListenable<T> {
11+
final ComputedImpl<T> _parent;
12+
final Set<VoidCallback> _listeners = {};
13+
StreamSubscription<T>? _parentSubscription;
14+
15+
ComputedValueListenable(this._parent);
16+
17+
void _onData(T data) {
18+
for (var listener in _listeners) {
19+
listener();
20+
}
21+
}
22+
23+
@override
24+
void addListener(VoidCallback listener) {
25+
_listeners.add(listener);
26+
if (_listeners.length == 1) {
27+
// TODO: Use a lower-level integration instead of asStream
28+
// To keep a single source of truth for the listeners of the computation, inside ComputedImpl
29+
_parentSubscription = _parent.asStream.listen((event) => _onData(event));
30+
// ValueListenable does not propagate exceptions
31+
}
32+
}
33+
34+
@override
35+
void removeListener(VoidCallback listener) {
36+
if (_listeners.remove(listener)) {
37+
if (_listeners.isEmpty) {
38+
_parentSubscription!.cancel();
39+
}
40+
}
41+
}
42+
43+
@override
44+
T get value {
45+
return _parent.value;
46+
}
47+
}
48+
49+
class ComputedAsValueListenableExtensionImpl<T> {
50+
final Computed<T> c;
51+
52+
ComputedAsValueListenableExtensionImpl(this.c);
53+
54+
ValueListenable<T> get asValueListenable {
55+
return ComputedValueListenable(c as ComputedImpl<T>);
56+
}
57+
}
58+
59+
class ValueListenableDataSourceSubscription<T>
60+
implements DataSourceSubscription<T> {
61+
final void Function() voidCallback;
62+
final ValueListenable<T> v;
63+
64+
ValueListenableDataSourceSubscription(this.v, void Function(T data) onData)
65+
: voidCallback = (() => onData(v.value)) {
66+
v.addListener(voidCallback);
67+
}
68+
69+
@override
70+
Future<void> cancel() {
71+
v.removeListener(voidCallback);
72+
return Future.value();
73+
}
74+
75+
@override
76+
bool get isPaused => false;
77+
78+
@override
79+
void pause([Future<void>? resumeSignal]) {
80+
// TODO: implement pause
81+
throw UnimplementedError();
82+
}
83+
84+
@override
85+
void resume() {
86+
// TODO: implement resume
87+
throw UnimplementedError();
88+
}
89+
}
90+
91+
class ComputedValueListenableExtensionImpl<T> {
92+
final ValueListenable<T> v;
93+
94+
ComputedValueListenableExtensionImpl(this.v);
95+
T get use {
96+
final caller = GlobalCtx.currentComputation;
97+
return caller.useDataSource(
98+
v,
99+
() => v.use,
100+
(onData) => ValueListenableDataSourceSubscription<T>(v, onData),
101+
true,
102+
v.value);
103+
}
104+
}

‎pubspec.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: computed_flutter
2+
description: Computed for Flutter
3+
4+
publish_to: "none"
5+
version: 0.0.0+0
6+
7+
environment:
8+
sdk: ">=2.17.0 <3.0.0"
9+
dependencies:
10+
flutter:
11+
sdk: flutter
12+
built_collection: ^5.1.1
13+
computed:
14+
path: ../computed
15+
dev_dependencies:
16+
flutter_test:
17+
sdk: flutter
18+
flutter_lints: ^3.0.0

‎web/favicon.png

917 Bytes
Loading

‎web/icons/Icon-192.png

5.17 KB
Loading

‎web/icons/Icon-512.png

8.06 KB
Loading

‎web/icons/Icon-maskable-192.png

5.46 KB
Loading

‎web/icons/Icon-maskable-512.png

20.5 KB
Loading

‎web/index.html

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<!--
5+
If you are serving your web app in a path other than the root, change the
6+
href value below to reflect the base path you are serving from.
7+
8+
The path provided below has to start and end with a slash "/" in order for
9+
it to work correctly.
10+
11+
For more details:
12+
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
13+
14+
This is a placeholder for base href that will be replaced by the value of
15+
the `--base-href` argument provided to `flutter build`.
16+
-->
17+
<base href="$FLUTTER_BASE_HREF">
18+
19+
<meta charset="UTF-8">
20+
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
21+
<meta name="description" content="A new Flutter project.">
22+
23+
<!-- iOS meta tags & icons -->
24+
<meta name="apple-mobile-web-app-capable" content="yes">
25+
<meta name="apple-mobile-web-app-status-bar-style" content="black">
26+
<meta name="apple-mobile-web-app-title" content="computed_flutter">
27+
<link rel="apple-touch-icon" href="icons/Icon-192.png">
28+
29+
<!-- Favicon -->
30+
<link rel="icon" type="image/png" href="favicon.png"/>
31+
32+
<title>computed_flutter</title>
33+
<link rel="manifest" href="manifest.json">
34+
35+
<script>
36+
// The value below is injected by flutter build, do not touch.
37+
const serviceWorkerVersion = null;
38+
</script>
39+
<!-- This script adds the flutter initialization JS code -->
40+
<script src="flutter.js" defer></script>
41+
</head>
42+
<body>
43+
<script>
44+
window.addEventListener('load', function(ev) {
45+
// Download main.dart.js
46+
_flutter.loader.loadEntrypoint({
47+
serviceWorker: {
48+
serviceWorkerVersion: serviceWorkerVersion,
49+
},
50+
onEntrypointLoaded: function(engineInitializer) {
51+
engineInitializer.initializeEngine().then(function(appRunner) {
52+
appRunner.runApp();
53+
});
54+
}
55+
});
56+
});
57+
</script>
58+
</body>
59+
</html>

‎web/manifest.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "computed_flutter",
3+
"short_name": "computed_flutter",
4+
"start_url": ".",
5+
"display": "standalone",
6+
"background_color": "#0175C2",
7+
"theme_color": "#0175C2",
8+
"description": "A new Flutter project.",
9+
"orientation": "portrait-primary",
10+
"prefer_related_applications": false,
11+
"icons": [
12+
{
13+
"src": "icons/Icon-192.png",
14+
"sizes": "192x192",
15+
"type": "image/png"
16+
},
17+
{
18+
"src": "icons/Icon-512.png",
19+
"sizes": "512x512",
20+
"type": "image/png"
21+
},
22+
{
23+
"src": "icons/Icon-maskable-192.png",
24+
"sizes": "192x192",
25+
"type": "image/png",
26+
"purpose": "maskable"
27+
},
28+
{
29+
"src": "icons/Icon-maskable-512.png",
30+
"sizes": "512x512",
31+
"type": "image/png",
32+
"purpose": "maskable"
33+
}
34+
]
35+
}

0 commit comments

Comments
 (0)
Please sign in to comment.