Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/lib/screens/identity_verification_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,7 @@ class _IdentityVerificationScreenState
image: Icons.warning,
title: 'Not enough balance',
description:
"You don't have enough balance.\nPlease fund your account at least $minimumBalance TFTs.",
'Please fund your account with at least $minimumBalance TFTs.',
actions: <Widget>[
TextButton(
child: const Text('Close'),
Expand Down
3 changes: 2 additions & 1 deletion app/lib/screens/wallets/send.dart
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,8 @@ class _WalletSendScreenState extends State<WalletSendScreen> {
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
color: Theme.of(context).colorScheme.onSurface,
),
keyboardType: const TextInputType.numberWithOptions(decimal: true),
keyboardType:
const TextInputType.numberWithOptions(decimal: true),
controller: amountController,
decoration: InputDecoration(
labelText: 'Amount (Balance: $balance)',
Expand Down
2 changes: 1 addition & 1 deletion app/lib/screens/wizard/page4.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Page4 extends StatelessWidget {
title: 'THREEFOLD',
subtitle: 'NEWS',
imagePath: 'assets/news_outline.png',
description: "Stay up to date with ThreeFolds' latest news",
description: "Stay up to date with ThreeFold's latest news",
heightPercentage: 0.35,
widthPercentage: 0.70,
);
Expand Down
8 changes: 5 additions & 3 deletions app/lib/widgets/wizard/common_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ class _CommonPageState extends State<CommonPage> {
bool attemptToContinue = false;
final termsAndConditionsUrl = Globals().termsAndConditionsUrl;


@override
Widget build(BuildContext context) {
return Scaffold(
Expand Down Expand Up @@ -152,7 +151,7 @@ class _CommonPageState extends State<CommonPage> {
text: TextSpan(
children: [
TextSpan(
text: "I agree to ThreeFolds' ",
text: "I agree to ThreeFold's ",
style: Theme.of(context)
.textTheme
.bodyMedium!
Expand Down Expand Up @@ -184,7 +183,10 @@ class _CommonPageState extends State<CommonPage> {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => WebView(title: 'Terms and Conditions', url: termsAndConditionsUrl,)),
builder: (context) => WebView(
title: 'Terms and Conditions',
url: termsAndConditionsUrl,
)),
);
},
),
Expand Down
6 changes: 5 additions & 1 deletion app/lib/widgets/wizard/terms_and_conditions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ class _TermsAndConditionsState extends State<TermsAndConditions> {
onTap: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => WebView(url: termsAndConditionsUrl, title: 'Terms and Conditions', )),
MaterialPageRoute(
builder: (context) => WebView(
url: termsAndConditionsUrl,
title: 'Terms and Conditions',
)),
);
},
child: Text('Terms & Conditions',
Expand Down