initial commit to gitea

This commit is contained in:
2022-03-10 00:47:26 -05:00
parent 808ffa3211
commit f504e213a0
93 changed files with 4394 additions and 1539 deletions

View File

@@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import '../models/category_products.dart';
import '../models/business.dart';
import '../models/comment.dart';
@@ -120,4 +121,24 @@ class GetCurrentPositionSuccess {
class GetCurrentPositionFailed {
Exception exception;
GetCurrentPositionFailed(this.exception);
}
class ShopPageScrollUpdated {
double offset;
ShopPageScrollUpdated(this.offset);
}
class GetCategoryProducts {
dynamic data;
GetCategoryProducts(this.data);
}
class MoreCategoryProducts {
List<CategoryProducts> data;
MoreCategoryProducts(this.data);
}
class CategoryChangeEvent {
int categoryId;
CategoryChangeEvent(this.categoryId);
}