- Introduction on base view model and stateless widget classes

- Implementation of firebase
- Implementation of dependency injection

Took 11 hours 26 minutes
This commit is contained in:
2021-07-24 20:54:18 +01:00
parent 3d438ffc5b
commit f83071fa78
27 changed files with 1438 additions and 150 deletions

13
lib/Utils/ViewUtils.dart Normal file
View File

@@ -0,0 +1,13 @@
import 'package:flutter/cupertino.dart';
import 'package:toast/toast.dart';
class ViewUtils{
static displayToast(BuildContext context, String message){
Toast.show(
message, context,
duration: Toast.LENGTH_SHORT,
gravity: Toast.BOTTOM
);
}
}