Skip to content
Snippets Groups Projects
Commit ad1a5175 authored by poka's avatar poka
Browse files

fix flutter format

parent 8555c579
No related branches found
No related tags found
No related merge requests found
Pipeline #16196 failed
......@@ -107,8 +107,7 @@ Future<void> main() async {
appRunner: () => runApp(
EasyLocalization(
supportedLocales: const [Locale('en'), Locale('fr')],
path:
'assets/translations', // <-- change the path of the translation files
path: 'assets/translations',
fallbackLocale: const Locale('en'),
child: Gecko(indexerEndpoint),
),
......
......@@ -120,7 +120,8 @@ class SubstrateSdk with ChangeNotifier {
// currencyName = await getCurencyName();
notifyListeners();
_homeProvider.changeMessage(
"wellConnectedToNode".tr(args: [getConnectedEndpoint()!.split('/')[2]]),
"wellConnectedToNode"
.tr(args: [getConnectedEndpoint()!.split('/')[2]]),
5);
// snackNode(ctx, true);
} else {
......
......@@ -164,9 +164,7 @@ class WalletOptionsProvider with ChangeNotifier {
return isOwner
? InkWell(
child: _showText(
'clickHereToConfirmIdentity'.tr(),
18,
true),
'clickHereToConfirmIdentity'.tr(), 18, true),
onTap: () async {
await validateIdentity(context);
},
......
......@@ -127,7 +127,6 @@ class WalletsProfilesProvider with ChangeNotifier {
return _balance;
}
Widget headerProfileView(
BuildContext context, String _address, String? username) {
const double _avatarSize = 140;
......@@ -182,13 +181,11 @@ Widget headerProfileView(
),
]),
const SizedBox(height: 25),
balance(context, _address, 22),
const SizedBox(height: 10),
_walletOptions.idtyStatus(context, _address,
isOwner: false, color: Colors.black),
getCerts(context, _address, 14),
if (username == null &&
g1WalletsBox.get(_address)?.username != null)
SizedBox(
......@@ -219,7 +216,6 @@ Widget headerProfileView(
ClipOval(
child: _cesiumPlusProvider.defaultAvatar(_avatarSize),
),
const SizedBox(height: 25),
]),
]),
......@@ -228,8 +224,6 @@ Widget headerProfileView(
]);
}
void reload() {
notifyListeners();
}
......
......@@ -554,8 +554,8 @@ Widget welcomeHome(context) {
},
child: Text(
'createWallet'.tr(),
style:
const TextStyle(fontSize: 24, fontWeight: FontWeight.w600),
style: const TextStyle(
fontSize: 24, fontWeight: FontWeight.w600),
),
),
),
......
......@@ -61,8 +61,8 @@ class ChooseWalletScreen extends StatelessWidget {
},
child: Text(
'chooseThisWallet'.tr(),
style:
const TextStyle(fontSize: 24, fontWeight: FontWeight.w600),
style: const TextStyle(
fontSize: 24, fontWeight: FontWeight.w600),
),
),
),
......
......@@ -125,8 +125,8 @@ class _CustomDerivationState extends State<CustomDerivation> {
}
if (_pin != null || _myWalletProvider.pinCode != '') {
String _newDerivationName =
'wallet'.tr() + ' ${_myWalletProvider.listWallets.last.number! + 2}';
String _newDerivationName = 'wallet'.tr() +
' ${_myWalletProvider.listWallets.last.number! + 2}';
if (dropdownValue == 'root') {
await _myWalletProvider.generateRootWallet(
context, 'Portefeuille racine');
......@@ -149,7 +149,8 @@ class _CustomDerivationState extends State<CustomDerivation> {
},
child: Text(
'validate'.tr(),
style: const TextStyle(fontSize: 24, fontWeight: FontWeight.w600),
style: const TextStyle(
fontSize: 24, fontWeight: FontWeight.w600),
),
),
),
......
......@@ -353,7 +353,8 @@ class WalletOptions extends StatelessWidget {
),
const SizedBox(width: 22),
Text("displayActivity".tr(),
style: const TextStyle(fontSize: 20, fontWeight: FontWeight.w500)),
style:
const TextStyle(fontSize: 20, fontWeight: FontWeight.w500)),
]),
),
);
......
......@@ -32,9 +32,7 @@ class OnboardingStepThree extends StatelessWidget {
child: common.infoIntro(
context,
<TextSpan>[
TextSpan(
text:
'warningForgotPassword'.tr()),
TextSpan(text: 'warningForgotPassword'.tr()),
],
'forgot_password.png'.tr(),
'>',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment