mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-11 18:39:45 +00:00
style: Linting
This commit is contained in:
parent
48446ab3d5
commit
3feb5acf71
File diff suppressed because it is too large
Load diff
|
@ -2,9 +2,7 @@ import 'dart:math';
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:fl_chart/fl_chart.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/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:selfprivacy/logic/models/metrics.dart';
|
||||||
import 'package:intl/intl.dart';
|
import 'package:intl/intl.dart';
|
||||||
import 'package:selfprivacy/ui/pages/server_details/charts/bottom_title.dart';
|
import 'package:selfprivacy/ui/pages/server_details/charts/bottom_title.dart';
|
||||||
|
|
|
@ -254,9 +254,9 @@ class SelectTypePage extends StatelessWidget {
|
||||||
const SizedBox(width: 8),
|
const SizedBox(width: 8),
|
||||||
Text(
|
Text(
|
||||||
'initializing.choose_server_type_storage'
|
'initializing.choose_server_type_storage'
|
||||||
.tr(args: [
|
.tr(
|
||||||
type.disk.gibibyte.toString()
|
args: [type.disk.gibibyte.toString()],
|
||||||
]),
|
),
|
||||||
style:
|
style:
|
||||||
Theme.of(context).textTheme.bodyMedium,
|
Theme.of(context).textTheme.bodyMedium,
|
||||||
),
|
),
|
||||||
|
@ -275,9 +275,11 @@ class SelectTypePage extends StatelessWidget {
|
||||||
const SizedBox(width: 8),
|
const SizedBox(width: 8),
|
||||||
Text(
|
Text(
|
||||||
'initializing.choose_server_type_payment_per_month'
|
'initializing.choose_server_type_payment_per_month'
|
||||||
.tr(args: [
|
.tr(
|
||||||
'${type.price.value.toString()} ${type.price.currency}'
|
args: [
|
||||||
]),
|
'${type.price.value.toString()} ${type.price.currency}'
|
||||||
|
],
|
||||||
|
),
|
||||||
style:
|
style:
|
||||||
Theme.of(context).textTheme.bodyLarge,
|
Theme.of(context).textTheme.bodyLarge,
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue