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