Compare commits

..

2 Commits

Author SHA1 Message Date
24791b3293 🎉 Launch 3.3.0+146 2025-11-17 01:33:34 +08:00
3ac263d483 🐛 Fix build on web 2025-11-17 01:26:34 +08:00
3 changed files with 5 additions and 4 deletions

View File

@@ -1335,5 +1335,6 @@
"fundCreateNew": "Create New", "fundCreateNew": "Create New",
"fundCreateNewHint": "Create a new fund for your message. Select recipients and amount.", "fundCreateNewHint": "Create a new fund for your message. Select recipients and amount.",
"amountOfSplits": "Amount of Splits", "amountOfSplits": "Amount of Splits",
"enterNumberOfSplits": "Enter Splits Amount" "enterNumberOfSplits": "Enter Splits Amount",
"orCreateWith": "Or\ncreate with"
} }

View File

@@ -3,12 +3,12 @@ import 'package:flutter/material.dart';
class UniversalVideo extends StatelessWidget { class UniversalVideo extends StatelessWidget {
final String uri; final String uri;
final double aspectRatio; final double? aspectRatio;
final bool autoplay; final bool autoplay;
const UniversalVideo({ const UniversalVideo({
super.key, super.key,
required this.uri, required this.uri,
required this.aspectRatio, this.aspectRatio,
this.autoplay = false, this.autoplay = false,
}); });

View File

@@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts # In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix. # of the product and file versions while build-number is used as the build suffix.
version: 3.3.0+145 version: 3.3.0+146
environment: environment:
sdk: ^3.7.2 sdk: ^3.7.2