style: Linting

pull/157/head
Inex Code 2022-12-31 07:50:43 +03:00
parent 48446ab3d5
commit 3feb5acf71
3 changed files with 2170 additions and 1796 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2,9 +2,7 @@ import 'dart:math';
import 'package:flutter/material.dart';
import 'package:fl_chart/fl_chart.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:selfprivacy/logic/common_enum/common_enum.dart';
import 'package:selfprivacy/logic/cubit/server_detailed_info/server_detailed_info_cubit.dart';
import 'package:selfprivacy/logic/models/metrics.dart';
import 'package:intl/intl.dart';
import 'package:selfprivacy/ui/pages/server_details/charts/bottom_title.dart';

View File

@ -254,9 +254,9 @@ class SelectTypePage extends StatelessWidget {
const SizedBox(width: 8),
Text(
'initializing.choose_server_type_storage'
.tr(args: [
type.disk.gibibyte.toString()
]),
.tr(
args: [type.disk.gibibyte.toString()],
),
style:
Theme.of(context).textTheme.bodyMedium,
),
@ -275,9 +275,11 @@ class SelectTypePage extends StatelessWidget {
const SizedBox(width: 8),
Text(
'initializing.choose_server_type_payment_per_month'
.tr(args: [
'${type.price.value.toString()} ${type.price.currency}'
]),
.tr(
args: [
'${type.price.value.toString()} ${type.price.currency}'
],
),
style:
Theme.of(context).textTheme.bodyLarge,
),