Compare commits
5
Commits
c09822b470
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d73f82017 | ||
|
|
1d52f22f5f | ||
|
|
f87309af3f | ||
|
|
96d0b91984 | ||
|
|
e20dc53fb8 |
@@ -45,7 +45,7 @@ android {
|
||||
applicationId "com.appscale.pos"
|
||||
// You can update the following values to match your application needs.
|
||||
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
|
||||
minSdkVersion 21
|
||||
minSdkVersion flutter.minSdkVersion
|
||||
targetSdkVersion 35
|
||||
versionCode flutterVersionCode.toInteger()
|
||||
versionName flutterVersionName
|
||||
|
||||
@@ -865,7 +865,9 @@ class PrintDataoutputs {
|
||||
? '------------------------------------------------'
|
||||
: '--------------------------------',
|
||||
styles: const PosStyles(bold: false, align: PosAlign.center));
|
||||
for (final product in (order.orderItems ?? <OrderItem>[])) {
|
||||
for (final product
|
||||
in (order.orderItems?.where((item) => item.status != 'cancelled') ??
|
||||
<OrderItem>[])) {
|
||||
bytes += generator.row([
|
||||
PosColumn(
|
||||
text: '${product.quantity} x ${product.productName}',
|
||||
|
||||
@@ -55,7 +55,7 @@ class TableRemoteDataSource {
|
||||
|
||||
Future<Either<String, TableResponseModel>> getTable({
|
||||
int page = 1,
|
||||
int limit = 10,
|
||||
int limit = 50,
|
||||
String? status,
|
||||
}) async {
|
||||
try {
|
||||
|
||||
@@ -72,10 +72,14 @@ class ProfitLossData {
|
||||
dateTo: map['date_to'],
|
||||
groupBy: map['group_by'],
|
||||
summary: ProfitLossSummary.fromMap(map['summary']),
|
||||
data: List<ProfitLossItem>.from(
|
||||
map['data'].map((x) => ProfitLossItem.fromMap(x))),
|
||||
productData: List<ProfitLossProduct>.from(
|
||||
map['product_data'].map((x) => ProfitLossProduct.fromMap(x))),
|
||||
data: map['data'] == null
|
||||
? []
|
||||
: List<ProfitLossItem>.from(
|
||||
map['data'].map((x) => ProfitLossItem.fromMap(x))),
|
||||
productData: map['product_data'] == null
|
||||
? []
|
||||
: List<ProfitLossProduct>.from(
|
||||
map['product_data'].map((x) => ProfitLossProduct.fromMap(x))),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -372,7 +372,8 @@ class _PaymentPageState extends State<PaymentPage> {
|
||||
success: (data) {
|
||||
context.pushReplacement(SuccessPaymentPage(
|
||||
productQuantity: widget.order.orderItems
|
||||
?.map(
|
||||
?.where((item) => item.status == "pending")
|
||||
.map(
|
||||
(item) => ProductQuantity(
|
||||
product: Product(
|
||||
name: item.productName,
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import 'package:enaklo_pos/core/components/spaces.dart';
|
||||
import 'package:enaklo_pos/core/constants/colors.dart';
|
||||
import 'package:enaklo_pos/core/extensions/build_context_ext.dart';
|
||||
import 'package:enaklo_pos/core/extensions/int_ext.dart';
|
||||
import 'package:enaklo_pos/presentation/home/pages/dashboard_page.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class RefundSuccessDialog extends StatelessWidget {
|
||||
@@ -102,8 +104,7 @@ class RefundSuccessDialog extends StatelessWidget {
|
||||
Expanded(
|
||||
child: ElevatedButton(
|
||||
onPressed: () {
|
||||
Navigator.pop(context);
|
||||
Navigator.pop(context);
|
||||
context.push(DashboardPage());
|
||||
},
|
||||
style: ElevatedButton.styleFrom(
|
||||
backgroundColor: AppColors.primary,
|
||||
|
||||
@@ -172,12 +172,17 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
break;
|
||||
}
|
||||
|
||||
if (previous == 0) return '+0.0%';
|
||||
// Handle division by zero and invalid values
|
||||
if (previous == 0 || previous.isNaN || previous.isInfinite) return '+0.0%';
|
||||
if (current.isNaN || current.isInfinite) return '+0.0%';
|
||||
|
||||
final trendPercentage = ((current - previous) / previous) * 100;
|
||||
final sign = trendPercentage >= 0 ? '+' : '';
|
||||
|
||||
return '$sign${trendPercentage.toStringAsFixed(1)}%';
|
||||
// Check if trendPercentage is valid
|
||||
if (trendPercentage.isNaN || trendPercentage.isInfinite) return '+0.0%';
|
||||
|
||||
final sign = trendPercentage >= 0 ? '+' : '';
|
||||
return '$sign${trendPercentage.round()}%';
|
||||
}
|
||||
|
||||
Widget _buildSummaryCards() {
|
||||
@@ -201,8 +206,7 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
{
|
||||
'title': 'Laba Kotor',
|
||||
'value': _formatCurrency(data.summary.grossProfit),
|
||||
'subtitle':
|
||||
'${data.summary.grossProfitMargin.toStringAsFixed(1)}% margin',
|
||||
'subtitle': '${_safeRound(data.summary.grossProfitMargin)}% margin',
|
||||
'icon': Icons.trending_up,
|
||||
'color': AppColorProfitLoss.primary,
|
||||
'trend': _calculateTrend('grossProfit'),
|
||||
@@ -210,8 +214,7 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
{
|
||||
'title': 'Laba Bersih',
|
||||
'value': _formatCurrency(data.summary.netProfit),
|
||||
'subtitle':
|
||||
'${data.summary.netProfitMargin.toStringAsFixed(1)}% margin',
|
||||
'subtitle': '${_safeRound(data.summary.netProfitMargin)}% margin',
|
||||
'icon': Icons.account_balance,
|
||||
'color': AppColorProfitLoss.info,
|
||||
'trend': _calculateTrend('netProfit'),
|
||||
@@ -360,13 +363,17 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
showTitles: true,
|
||||
reservedSize: 50,
|
||||
getTitlesWidget: (value, meta) {
|
||||
return Text(
|
||||
'${(value / 1000).toInt()}K',
|
||||
style: TextStyle(
|
||||
color: Colors.grey[600],
|
||||
fontSize: 10,
|
||||
),
|
||||
);
|
||||
final kValue = (value / 1000);
|
||||
if (kValue.isFinite) {
|
||||
return Text(
|
||||
'${kValue.toInt()}K',
|
||||
style: TextStyle(
|
||||
color: Colors.grey[600],
|
||||
fontSize: 10,
|
||||
),
|
||||
);
|
||||
}
|
||||
return const SizedBox();
|
||||
},
|
||||
),
|
||||
),
|
||||
@@ -402,8 +409,9 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
// Garis Pendapatan
|
||||
LineChartBarData(
|
||||
spots: data.data.asMap().entries.map((entry) {
|
||||
final revenue = entry.value.revenue.toDouble();
|
||||
return FlSpot(
|
||||
entry.key.toDouble(), entry.value.revenue.toDouble());
|
||||
entry.key.toDouble(), revenue.isFinite ? revenue : 0);
|
||||
}).toList(),
|
||||
isCurved: true,
|
||||
color: AppColorProfitLoss.info,
|
||||
@@ -412,8 +420,9 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
// Garis Biaya
|
||||
LineChartBarData(
|
||||
spots: data.data.asMap().entries.map((entry) {
|
||||
final cost = entry.value.cost.toDouble();
|
||||
return FlSpot(
|
||||
entry.key.toDouble(), entry.value.cost.toDouble());
|
||||
entry.key.toDouble(), cost.isFinite ? cost : 0);
|
||||
}).toList(),
|
||||
isCurved: true,
|
||||
color: AppColorProfitLoss.danger,
|
||||
@@ -422,8 +431,9 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
// Garis Laba Bersih
|
||||
LineChartBarData(
|
||||
spots: data.data.asMap().entries.map((entry) {
|
||||
final netProfit = entry.value.netProfit.toDouble();
|
||||
return FlSpot(entry.key.toDouble(),
|
||||
entry.value.netProfit.toDouble());
|
||||
netProfit.isFinite ? netProfit : 0);
|
||||
}).toList(),
|
||||
isCurved: true,
|
||||
color: AppColorProfitLoss.success,
|
||||
@@ -506,9 +516,10 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
}
|
||||
|
||||
Widget _buildProductItem(ProfitLossProduct product) {
|
||||
final profitColor = product.grossProfitMargin >= 35
|
||||
final profitMargin = _safeDouble(product.grossProfitMargin);
|
||||
final profitColor = profitMargin >= 35
|
||||
? AppColorProfitLoss.success
|
||||
: product.grossProfitMargin >= 25
|
||||
: profitMargin >= 25
|
||||
? AppColorProfitLoss.warning
|
||||
: AppColorProfitLoss.danger;
|
||||
|
||||
@@ -572,7 +583,7 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
borderRadius: BorderRadius.circular(6),
|
||||
),
|
||||
child: Text(
|
||||
'${product.grossProfitMargin.toStringAsFixed(1)}%',
|
||||
'${_safeRound(profitMargin)}%',
|
||||
style: TextStyle(
|
||||
fontSize: 12,
|
||||
fontWeight: FontWeight.bold,
|
||||
@@ -710,13 +721,17 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
startDegreeOffset: -90,
|
||||
sections: breakdownData.asMap().entries.map((entry) {
|
||||
final item = entry.value;
|
||||
final grossProfit = data.summary.grossProfit;
|
||||
final value = item['value'] as int;
|
||||
|
||||
// Handle division by zero
|
||||
final percentage =
|
||||
(item['value'] as int) / data.summary.grossProfit * 100;
|
||||
grossProfit > 0 ? (value / grossProfit * 100) : 0.0;
|
||||
|
||||
return PieChartSectionData(
|
||||
color: item['color'] as Color,
|
||||
value: (item['value'] as int).toDouble(),
|
||||
title: '${percentage.toStringAsFixed(1)}%',
|
||||
value: value.toDouble(),
|
||||
title: '${_safeRound(percentage)}%',
|
||||
radius: 40,
|
||||
titleStyle: const TextStyle(
|
||||
fontSize: 10,
|
||||
@@ -799,7 +814,7 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Text(
|
||||
'${(data.summary.profitabilityRatio * 100).toStringAsFixed(1)}%',
|
||||
'${_safeRound(data.summary.profitabilityRatio)}%',
|
||||
style: const TextStyle(
|
||||
fontSize: 24,
|
||||
fontWeight: FontWeight.bold,
|
||||
@@ -848,9 +863,7 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
Expanded(
|
||||
child: _buildMetricCard(
|
||||
'Nilai Rata-rata Pesanan',
|
||||
_formatCurrency(
|
||||
(data.summary.totalRevenue / data.summary.totalOrders)
|
||||
.round()),
|
||||
_formatCurrency(_safeCalculateAverageOrder()),
|
||||
'Per transaksi',
|
||||
Icons.shopping_cart_outlined,
|
||||
AppColorProfitLoss.info,
|
||||
@@ -870,7 +883,7 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
Expanded(
|
||||
child: _buildMetricCard(
|
||||
'Rasio Biaya',
|
||||
'${((data.summary.totalCost / data.summary.totalRevenue) * 100).toStringAsFixed(1)}%',
|
||||
'${_safeCalculateCostRatio()}%',
|
||||
'Dari total pendapatan',
|
||||
Icons.pie_chart,
|
||||
AppColorProfitLoss.danger,
|
||||
@@ -1026,7 +1039,7 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
borderRadius: BorderRadius.circular(4),
|
||||
),
|
||||
child: Text(
|
||||
'${item.netProfitMargin.toStringAsFixed(1)}%',
|
||||
'${_safeRound(item.netProfitMargin)}%',
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
fontSize: 10,
|
||||
@@ -1093,6 +1106,31 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
);
|
||||
}
|
||||
|
||||
// Helper methods for safe calculations
|
||||
int _safeRound(double value) {
|
||||
if (value.isNaN || value.isInfinite) return 0;
|
||||
return value.round();
|
||||
}
|
||||
|
||||
double _safeDouble(double value) {
|
||||
if (value.isNaN || value.isInfinite) return 0.0;
|
||||
return value;
|
||||
}
|
||||
|
||||
int _safeCalculateAverageOrder() {
|
||||
if (data.summary.totalOrders == 0) return 0;
|
||||
final average = data.summary.totalRevenue / data.summary.totalOrders;
|
||||
if (average.isNaN || average.isInfinite) return 0;
|
||||
return average.round();
|
||||
}
|
||||
|
||||
int _safeCalculateCostRatio() {
|
||||
if (data.summary.totalRevenue == 0) return 0;
|
||||
final ratio = (data.summary.totalCost / data.summary.totalRevenue) * 100;
|
||||
if (ratio.isNaN || ratio.isInfinite) return 0;
|
||||
return ratio.round();
|
||||
}
|
||||
|
||||
IconData _getProductIcon(String category) {
|
||||
switch (category.toLowerCase()) {
|
||||
case 'coffee':
|
||||
@@ -1110,8 +1148,9 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
}
|
||||
|
||||
Color _getMarginColor(double margin) {
|
||||
if (margin >= 25) return AppColorProfitLoss.success;
|
||||
if (margin >= 15) return AppColorProfitLoss.warning;
|
||||
final safeMargin = _safeDouble(margin);
|
||||
if (safeMargin >= 25) return AppColorProfitLoss.success;
|
||||
if (safeMargin >= 15) return AppColorProfitLoss.warning;
|
||||
return AppColorProfitLoss.danger;
|
||||
}
|
||||
|
||||
@@ -1126,7 +1165,7 @@ class ProfitLossWidget extends StatelessWidget {
|
||||
|
||||
String _formatCurrencyShort(int amount) {
|
||||
if (amount >= 1000000) {
|
||||
return 'Rp ${(amount / 1000000).toStringAsFixed(1)}M';
|
||||
return 'Rp ${(amount / 1000000).round()}M';
|
||||
} else if (amount >= 1000) {
|
||||
return 'Rp ${(amount / 1000).toStringAsFixed(0)}K';
|
||||
}
|
||||
|
||||
@@ -58,6 +58,24 @@ class SalesCard extends StatelessWidget {
|
||||
),
|
||||
),
|
||||
),
|
||||
if (order.isVoid == true)
|
||||
Container(
|
||||
padding:
|
||||
const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.red.withOpacity(0.15),
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
),
|
||||
child: Text(
|
||||
'Void',
|
||||
style: TextStyle(
|
||||
color: Colors.red,
|
||||
fontWeight: FontWeight.w600,
|
||||
fontSize: 10,
|
||||
letterSpacing: 0.5,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
|
||||
@@ -887,7 +887,7 @@ class _SuccessPaymentPageState extends State<SuccessPaymentPage> {
|
||||
],
|
||||
),
|
||||
Text(
|
||||
(order.totalAmount ?? 0).toString().currencyFormatRpV2,
|
||||
widget.nominalBayar.currencyFormatRpV2,
|
||||
style: const TextStyle(
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.w600,
|
||||
@@ -965,7 +965,7 @@ class _SuccessPaymentPageState extends State<SuccessPaymentPage> {
|
||||
],
|
||||
),
|
||||
child: Text(
|
||||
(order.totalAmount ?? 0).toString().currencyFormatRpV2,
|
||||
widget.nominalBayar.currencyFormatRpV2,
|
||||
style: const TextStyle(
|
||||
fontSize: 18,
|
||||
fontWeight: FontWeight.bold,
|
||||
|
||||
+29
-42
@@ -5,23 +5,18 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: _fe_analyzer_shared
|
||||
sha256: "16e298750b6d0af7ce8a3ba7c18c69c3785d11b15ec83f6dcd0ad2a0009b3cab"
|
||||
sha256: "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "76.0.0"
|
||||
_macros:
|
||||
dependency: transitive
|
||||
description: dart
|
||||
source: sdk
|
||||
version: "0.3.3"
|
||||
version: "67.0.0"
|
||||
analyzer:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: analyzer
|
||||
sha256: "1f14db053a8c23e260789e9b0980fa27f2680dd640932cae5e1137cce0e46e1e"
|
||||
sha256: "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "6.11.0"
|
||||
version: "6.4.1"
|
||||
another_flushbar:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -106,10 +101,10 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: build
|
||||
sha256: cef23f1eda9b57566c81e2133d196f8e3df48f244b317368d65c5943d91148f0
|
||||
sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.4.2"
|
||||
version: "2.4.1"
|
||||
build_config:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -130,26 +125,26 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: build_resolvers
|
||||
sha256: "99d3980049739a985cf9b21f30881f46db3ebc62c5b8d5e60e27440876b1ba1e"
|
||||
sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.4.3"
|
||||
version: "2.4.2"
|
||||
build_runner:
|
||||
dependency: "direct dev"
|
||||
description:
|
||||
name: build_runner
|
||||
sha256: "74691599a5bc750dc96a6b4bfd48f7d9d66453eab04c7f4063134800d6a5c573"
|
||||
sha256: "028819cfb90051c6b5440c7e574d1896f8037e3c96cf17aaeb054c9311cfbf4d"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.4.14"
|
||||
version: "2.4.13"
|
||||
build_runner_core:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: build_runner_core
|
||||
sha256: "22e3aa1c80e0ada3722fe5b63fd43d9c8990759d0a2cf489c8c5d7b2bdebc021"
|
||||
sha256: f8126682b87a7282a339b871298cc12009cb67109cfa1614d6436fb0289193e0
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "8.0.0"
|
||||
version: "7.3.2"
|
||||
built_collection:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -314,10 +309,10 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: dart_style
|
||||
sha256: "7856d364b589d1f08986e140938578ed36ed948581fbc3bc9aef1805039ac5ab"
|
||||
sha256: "99e066ce75c89d6b29903d788a7bb9369cf754f7b24bf70bf4b6d6d6b26853b9"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.3.7"
|
||||
version: "2.3.6"
|
||||
dartx:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -585,10 +580,10 @@ packages:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: freezed
|
||||
sha256: "44c19278dd9d89292cf46e97dc0c1e52ce03275f40a97c5a348e802a924bf40e"
|
||||
sha256: a434911f643466d78462625df76fd9eb13e57348ff43fe1f77bbe909522c67a1
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.5.7"
|
||||
version: "2.5.2"
|
||||
freezed_annotation:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -809,26 +804,26 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: leak_tracker
|
||||
sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0"
|
||||
sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "10.0.9"
|
||||
version: "11.0.2"
|
||||
leak_tracker_flutter_testing:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: leak_tracker_flutter_testing
|
||||
sha256: f8b613e7e6a13ec79cfdc0e97638fddb3ab848452eff057653abd3edba760573
|
||||
sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "3.0.9"
|
||||
version: "3.0.10"
|
||||
leak_tracker_testing:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: leak_tracker_testing
|
||||
sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3"
|
||||
sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "3.0.1"
|
||||
version: "3.0.2"
|
||||
lints:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -845,14 +840,6 @@ packages:
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.3.0"
|
||||
macros:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: macros
|
||||
sha256: "1d9e801cd66f7ea3663c45fc708450db1fa57f988142c64289142c9b7ee80656"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.1.3-main.0"
|
||||
matcher:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -873,10 +860,10 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: meta
|
||||
sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
|
||||
sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "1.16.0"
|
||||
version: "1.17.0"
|
||||
mime:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -1406,10 +1393,10 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: test_api
|
||||
sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd
|
||||
sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.7.4"
|
||||
version: "0.7.7"
|
||||
time:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -1470,10 +1457,10 @@ packages:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: vector_math
|
||||
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
|
||||
sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "2.1.4"
|
||||
version: "2.2.0"
|
||||
vm_service:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -1571,5 +1558,5 @@ packages:
|
||||
source: hosted
|
||||
version: "3.1.3"
|
||||
sdks:
|
||||
dart: ">=3.7.0-0 <4.0.0"
|
||||
dart: ">=3.8.0-0 <4.0.0"
|
||||
flutter: ">=3.27.4"
|
||||
|
||||
Reference in New Issue
Block a user