added string for every screen and removed from app strings

This commit is contained in:
amirrezaghabeli
2025-09-01 17:50:51 +03:30
parent bc69fff0ca
commit cab78c8f4d
45 changed files with 358 additions and 298 deletions
+11 -10
View File
@@ -5,10 +5,11 @@ import 'package:tm_app/core/routes/app_routes.dart';
import 'package:tm_app/view_models/profile_view_model.dart';
import '../../../core/constants/assets.dart';
import '../../../core/constants/strings.dart';
import '../../../core/constants/common_strings.dart';
import '../../../core/theme/colors.dart';
import '../../../core/utils/size_config.dart';
import '../../shared/desktop_navigation_widget.dart';
import '../strings/profile_strings.dart';
import '../widgets/theme_toggle.dart';
import '../widgets/title_description.dart';
@@ -64,7 +65,7 @@ class _DesktopProfilePageState extends State<DesktopProfilePage> {
}
if (viewModel.companyProfileData == null) {
return Center(child: Text(AppStrings.noData));
return Center(child: Text(CommonStrings.noData));
}
return Column(
@@ -100,24 +101,24 @@ class _DesktopProfilePageState extends State<DesktopProfilePage> {
children: [
SizedBox(height: 36.0.h()),
TitleDescription(
title: AppStrings.companyName,
title: ProfileStrings.companyName,
description: viewModel.companyProfileData!.name!,
),
TitleDescription(
title: AppStrings.nationalId,
title: ProfileStrings.nationalId,
description: viewModel.companyProfileData!.id!,
),
TitleDescription(
title: AppStrings.registrationNumber,
title: ProfileStrings.registrationNumber,
description:
viewModel.companyProfileData!.registrationNumber!,
),
TitleDescription(
title: AppStrings.businessType,
title: ProfileStrings.businessType,
description: '-',
),
TitleDescription(
title: AppStrings.founded,
title: ProfileStrings.founded,
description:
viewModel.companyProfileData!.foundedYear!.toString(),
),
@@ -126,7 +127,7 @@ class _DesktopProfilePageState extends State<DesktopProfilePage> {
Align(
alignment: AlignmentDirectional.centerStart,
child: Text(
AppStrings.settings,
ProfileStrings.settings,
style: TextStyle(
fontSize: 20.0.sp(),
fontWeight: FontWeight.w600,
@@ -140,7 +141,7 @@ class _DesktopProfilePageState extends State<DesktopProfilePage> {
child: Row(
children: [
Text(
AppStrings.appTheme,
ProfileStrings.appTheme,
style: TextStyle(
fontSize: 16.0.sp(),
fontWeight: FontWeight.w400,
@@ -178,7 +179,7 @@ class _DesktopProfilePageState extends State<DesktopProfilePage> {
),
alignment: Alignment.center,
child: Text(
AppStrings.logout,
ProfileStrings.logout,
style: TextStyle(
fontSize: 14.0.sp(),
fontWeight: FontWeight.w500,