1-bottom sheet
2- on tap location
3- swipe widget
This commit is contained in:
2025-04-14 16:23:09 +03:30
parent 28d43aa027
commit cf4dfb23ea
28 changed files with 349 additions and 68 deletions

View File

@@ -0,0 +1,22 @@
import 'package:logger/logger.dart';
import 'package:rasadyar_core/infrastructure/di/di.dart';
void iLog(dynamic message) {
di.get<Logger>().i(message.toString());
}
void eLog(dynamic message) {
di.get<Logger>().e(message.toString());
}
void dLog(dynamic message) {
di.get<Logger>().d(message.toString());
}
void fLog(dynamic message) {
di.get<Logger>().f(message.toString());
}
void tLog(dynamic message) {
di.get<Logger>().t(message.toString());
}