Merge pull request #78 from WDI-Ideas/meet

text changes done
This commit is contained in:
meet2711
2024-06-26 19:33:14 +05:30
committed by GitHub
4 changed files with 15 additions and 15 deletions

View File

@@ -7,11 +7,11 @@ class AppText {
static const String welcomeTitle1Text = "Tanami offers";
static const String welcomeTitle2Text = "Invest alongside";
static const String welcomeTitle3Text = "Start investing today ";
static const String weclomeDescription1Text =
static const String welcomeDescription1Text =
"access to best-in-class, exclusive, global private investments";
static const String weclomeDescription2Text =
static const String welcomeDescription2Text =
"experienced investment experts with a long-standing track record";
static const String weclomeDescription3Text = "with only SAR 1,000";
static const String welcomeDescription3Text = "with only SAR 1,000";
static const String loginText = "Log In";
static const String signUpText = "Sign Up";
@@ -126,7 +126,8 @@ class AppText {
//Forgot Password
static const String almostHere = 'Almost here...';
static const String completeAcc = 'Complete account profile in 3 minutes to start investing';
static const String completeAcc =
'Complete account profile in 3 minutes to start investing';
//Forgot Password
static const String restorePasswordText = "Restore password";
@@ -176,7 +177,8 @@ class AppText {
static const String required = 'Fields with * are required';
static const String withdrawAmt = 'Total Withdrawal amount:';
static const String depositAmt = 'Total Deposit amount:';
static const String info2 = 'Payment can include transfer fee from your bank';
static const String info2 =
'Payment can include transfer fee from your bank ';
static const String info3 =
'To accomplish payment please use payment details and Reference ID in tour Bank';
static const String next = 'Next';
@@ -309,5 +311,4 @@ class AppText {
static const String investmentConfirmationText = "Investment confirmation";
static const String enterAmountText = "Enter Amount";
static const String pleaseEnterAmountText = "Please Enter Amount";
}

View File

@@ -34,7 +34,7 @@ class SettingsBottomSection extends StatelessWidget {
),
),
const Gap(5),
Container(
SizedBox(
width: 1.sw,
height: 56.h,
child: ButtonWidget().textBorderBtn(

View File

@@ -1,13 +1,12 @@
// ignore: file_names
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:tanami_app/core/routes/routes.dart';
import 'package:tanami_app/core/styles/app_text.dart';
import 'package:ticket_widget/ticket_widget.dart';
import '../../../../../core/styles/app_color.dart';
import '../../../../../shared/components/button_widget.dart';
import 'package:tanami_app/core/styles/app_color.dart';
import 'package:tanami_app/shared/components/button_widget.dart';
class WalletDetails extends StatelessWidget {
final String type;
@@ -477,7 +476,7 @@ class WalletDetails extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
AppText.paymentMethod,
AppText.paymentMethodText,
style: GoogleFonts.dmSans(
color: const Color(0xFF535353),
fontSize: 14.sp,

View File

@@ -14,7 +14,7 @@ Widget buildPage(
context,
imageAsset: AppImages.firstWelcome,
title: AppText.welcomeTitle1Text,
description: AppText.weclomeDescription1Text,
description: AppText.welcomeDescription1Text,
);
case 1:
return buildOnboardingPage(
@@ -23,7 +23,7 @@ Widget buildPage(
context,
imageAsset: AppImages.secondWelcome,
title: AppText.welcomeTitle2Text,
description: AppText.weclomeDescription2Text,
description: AppText.welcomeDescription2Text,
);
case 2:
return buildOnboardingPage(
@@ -32,7 +32,7 @@ Widget buildPage(
context,
imageAsset: AppImages.thirdWelcome,
title: AppText.welcomeTitle3Text,
description: AppText.weclomeDescription3Text,
description: AppText.welcomeDescription3Text,
isLastPage: true,
);
default: