mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-03-11 17:25:32 +00:00
Refactor
This commit is contained in:
parent
d35192629b
commit
dee1a8635c
1 changed files with 21 additions and 16 deletions
|
|
@ -142,7 +142,8 @@ class SyncScreen extends ConsumerWidget {
|
|||
color: context.secondaryColor,
|
||||
),
|
||||
const SizedBox(width: 10),
|
||||
Text(
|
||||
Expanded(
|
||||
child: Text(
|
||||
l10n.sync_auto_warning,
|
||||
softWrap: true,
|
||||
style: TextStyle(
|
||||
|
|
@ -150,6 +151,7 @@ class SyncScreen extends ConsumerWidget {
|
|||
color: context.secondaryColor,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
@ -252,7 +254,8 @@ class SyncScreen extends ConsumerWidget {
|
|||
color: context.secondaryColor,
|
||||
),
|
||||
const SizedBox(width: 10),
|
||||
Text(
|
||||
Expanded(
|
||||
child: Text(
|
||||
l10n.syncing_subtitle,
|
||||
softWrap: true,
|
||||
style: TextStyle(
|
||||
|
|
@ -260,6 +263,7 @@ class SyncScreen extends ConsumerWidget {
|
|||
color: context.secondaryColor,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
@ -304,9 +308,10 @@ class SyncScreen extends ConsumerWidget {
|
|||
),
|
||||
),
|
||||
const SizedBox(height: 20),
|
||||
Row(
|
||||
Wrap(
|
||||
spacing: 20,
|
||||
crossAxisAlignment: WrapCrossAlignment.center,
|
||||
children: [
|
||||
const SizedBox(width: 20),
|
||||
Column(
|
||||
children: [
|
||||
IconButton(
|
||||
|
|
@ -329,7 +334,7 @@ class SyncScreen extends ConsumerWidget {
|
|||
Text(l10n.sync_button_sync),
|
||||
],
|
||||
),
|
||||
const SizedBox(width: 20),
|
||||
|
||||
Column(
|
||||
children: [
|
||||
IconButton(
|
||||
|
|
@ -346,7 +351,7 @@ class SyncScreen extends ConsumerWidget {
|
|||
Text(l10n.sync_button_upload),
|
||||
],
|
||||
),
|
||||
const SizedBox(width: 20),
|
||||
|
||||
Column(
|
||||
children: [
|
||||
IconButton(
|
||||
|
|
|
|||
Loading…
Reference in a new issue