add rate service

This commit is contained in:
Sai Naw Wun
2020-10-15 03:06:13 +06:30
parent 7b88658893
commit 47c07a6c88
45 changed files with 870 additions and 496 deletions

View File

@@ -1,4 +1,4 @@
import 'package:fcs/domain/entities/custom.dart';
import 'package:fcs/domain/entities/custom_duty.dart';
import 'package:fcs/helpers/theme.dart';
import 'package:fcs/localization/app_translations.dart';
import 'package:fcs/pages/main/util.dart';
@@ -9,7 +9,7 @@ import 'package:flutter/material.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
class CustomEditor extends StatefulWidget {
final Custom custom;
final CustomDuty custom;
CustomEditor({this.custom});
@override
@@ -21,7 +21,7 @@ class _CustomEditorState extends State<CustomEditor> {
TextEditingController _feeController = new TextEditingController();
bool _isLoading = false;
Custom _custom = new Custom();
CustomDuty _custom = new CustomDuty();
@override
void initState() {