Set ios icon and other improvements

This commit is contained in:
Juan Gilsanz Polo
2024-02-22 22:51:22 +01:00
parent ecdfb1e9c2
commit 57af5e926e
30 changed files with 244 additions and 38 deletions

View File

@@ -57,7 +57,7 @@ class Links extends ConsumerWidget {
bottom: false,
child: Builder(
builder: (context) => RefreshIndicator(
displacement: 95,
displacement: 120,
onRefresh: () => ref.refresh(linksRequestProvider.future),
child: CustomScrollView(
slivers: [

View File

@@ -118,8 +118,8 @@ class WebView extends ConsumerWidget {
child: Row(
children: [
const Icon(Icons.share_rounded),
const SizedBox(width: 8),
Text(t.webview.share),
const SizedBox(width: 12),
Flexible(child: Text(t.webview.share)),
],
),
),
@@ -131,8 +131,8 @@ class WebView extends ConsumerWidget {
child: Row(
children: [
const Icon(Icons.copy_rounded),
const SizedBox(width: 8),
Text(t.webview.copyLinkClipboard),
const SizedBox(width: 12),
Flexible(child: Text(t.webview.copyLinkClipboard)),
],
),
),
@@ -141,8 +141,8 @@ class WebView extends ConsumerWidget {
child: Row(
children: [
const Icon(Icons.open_in_browser_rounded),
const SizedBox(width: 8),
Text(t.webview.openInSystemBrowser),
const SizedBox(width: 12),
Flexible(child: Text(t.webview.openInSystemBrowser)),
],
),
),