mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-20 19:12:04 +00:00
adjusted button positions
This commit is contained in:
parent
52eb0a903b
commit
80bdfe7ee7
3 changed files with 9 additions and 4 deletions
|
|
@ -76,7 +76,7 @@ class _SourceRepositoriesState extends ConsumerState<SourceRepositories> {
|
|||
const SizedBox(
|
||||
width: 10,
|
||||
),
|
||||
Expanded(child: Text(repo.name ?? repo.jsonUrl!))
|
||||
Expanded(child: Text(repo.name ?? repo.jsonUrl ?? "Invalid source - remove it"))
|
||||
],
|
||||
)),
|
||||
Row(
|
||||
|
|
|
|||
|
|
@ -325,7 +325,12 @@ class SyncScreen extends ConsumerWidget {
|
|||
Text(l10n.sync_button_snapshot),
|
||||
],
|
||||
),
|
||||
const SizedBox(width: 20),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 20),
|
||||
Row(
|
||||
children: [
|
||||
const SizedBox(width: 30),
|
||||
Column(
|
||||
children: [
|
||||
IconButton(
|
||||
|
|
@ -413,7 +418,7 @@ class SyncScreen extends ConsumerWidget {
|
|||
Text(l10n.sync_button_upload),
|
||||
],
|
||||
),
|
||||
const SizedBox(width: 20),
|
||||
const SizedBox(width: 30),
|
||||
Column(
|
||||
children: [
|
||||
IconButton(
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ part of 'sync_server.dart';
|
|||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
String _$syncServerHash() => r'd13b5d6eaded02a9256e64550e98983b17ab70f4';
|
||||
String _$syncServerHash() => r'f973d04732090056e127d6d882146adfd192705d';
|
||||
|
||||
/// Copied from Dart SDK
|
||||
class _SystemHash {
|
||||
|
|
|
|||
Loading…
Reference in a new issue