Skip to content

Commit 4880ed8

Browse files
committed
chore: update dependencies
1 parent b012d97 commit 4880ed8

File tree

6 files changed

+105
-80
lines changed

6 files changed

+105
-80
lines changed

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@
110110

111111
<activity
112112
android:name="com.linusu.flutter_web_auth_2.CallbackActivity"
113-
android:exported="true">
113+
android:exported="true"
114+
android:taskAffinity="">
114115
<intent-filter android:label="flutter_web_auth_2">
115116
<action android:name="android.intent.action.VIEW" />
116117
<category android:name="android.intent.category.DEFAULT" />

lib/components/theming/saber_theme.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,7 @@ abstract class SaberTheme {
8989
) {
9090
final base = highContrast
9191
? (brightness == .light ? yaruHighContrastLight : yaruHighContrastDark)
92-
: (brightness == .light
93-
? yaru.theme ?? yaruLight
94-
: yaru.darkTheme ?? yaruDark);
92+
: (brightness == .light ? yaru.theme : yaru.darkTheme);
9593
return base.copyWith(
9694
platform: platform,
9795
textTheme: _Components.textTheme(brightness),

lib/data/extensions/point_extensions.dart

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,7 @@ extension PointExtensions on PointVector {
2626
}
2727

2828
BsonBinary toBsonBinary() {
29-
final Float32List point = Float32List.fromList([
30-
x,
31-
y,
32-
if (pressure != null) pressure!,
33-
]);
29+
final point = Float32List.fromList([x, y, ?pressure]);
3430
return BsonBinary.from(point.buffer.asUint8List());
3531
}
3632

macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import flutter_web_auth_2
1414
import irondash_engine_context
1515
import open_file_mac
1616
import package_info_plus
17-
import path_provider_foundation
1817
import printing
1918
import quill_native_bridge_macos
2019
import screen_retriever_macos
@@ -36,7 +35,6 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
3635
IrondashEngineContextPlugin.register(with: registry.registrar(forPlugin: "IrondashEngineContextPlugin"))
3736
OpenFilePlugin.register(with: registry.registrar(forPlugin: "OpenFilePlugin"))
3837
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
39-
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
4038
PrintingPlugin.register(with: registry.registrar(forPlugin: "PrintingPlugin"))
4139
QuillNativeBridgePlugin.register(with: registry.registrar(forPlugin: "QuillNativeBridgePlugin"))
4240
ScreenRetrieverMacosPlugin.register(with: registry.registrar(forPlugin: "ScreenRetrieverMacosPlugin"))

0 commit comments

Comments
 (0)