BASE: Initialize Localization.

This commit is contained in:
2025-12-03 18:21:19 +05:00
parent cf58d069ab
commit b04050384d
141 changed files with 1577 additions and 1419 deletions

View File

@@ -1,4 +1,5 @@
// Flutter Packages
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
@@ -10,7 +11,7 @@ class EmptyScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Center(
child: Text('Nothing found here...'.tr),
child: Text('Nothing found here...'.tr()),
);
}
}