sync page

This commit is contained in:
efrilm
2025-10-24 23:20:41 +07:00
parent 6892895021
commit 79e109cfe4
10 changed files with 669 additions and 63 deletions
@@ -406,7 +406,7 @@ class ProductLocalDataProvider {
Future<double> _getDatabaseSize() async {
try {
final dbPath = p.join(await getDatabasesPath(), 'db_pos.db');
final dbPath = p.join(await getDatabasesPath(), AppConstant.dbName);
final file = File(dbPath);
if (await file.exists()) {
final size = await file.length();